-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmachinecell.cabal
More file actions
99 lines (91 loc) · 3.57 KB
/
machinecell.cabal
File metadata and controls
99 lines (91 loc) · 3.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: machinecell
version: 4.0.1
synopsis: Arrow based stream transducers
license: BSD3
license-file: LICENSE
author: Hidenori Azuma
maintainer: Hidenori Azuma <as.capabl@gmail.com>
stability: experimental
homepage: http://github.com/as-capabl/machinecell
bug-reports: http://github.com/as-capabl/machinecell/issues
copyright: Copyright (c) 2014 Hidenori Azuma
category: Control, FRP, Reactivity
build-type: Simple
extra-source-files: README.md, CHANGELOG.md .gitignore
cabal-version: >=1.10
description:
Stream processing library similar to pipes, couduit, or machines.
.
Arrow combinatins are supported and can be used with the arrow notation.
AFRP-like utilities are also available.
.
A quick introduction is available in the Control.Arrow.Machine documentation.
flag arrow-tr
description:
Arrow transformer support.
.
A few environments(stackage, haste, etc) don't support this package.
default: False
manual: True
library
exposed-modules:
Control.Arrow.Machine,
Control.Arrow.Machine.Types,
Control.Arrow.Machine.Utils,
Control.Arrow.Machine.Evolution,
Control.Arrow.Machine.ArrowUtil,
Control.Arrow.Machine.Misc.Exception,
Control.Arrow.Machine.Misc.Pump,
Control.Arrow.Machine.Misc.Discrete
other-extensions: FlexibleInstances, Arrows, RankNTypes, TypeSynonymInstances, MultiParamTypeClasses, GADTs, FlexibleContexts, NoMonomorphismRestriction, RecursiveDo
ghc-options: -Wall
build-depends: base >=4.8 && <5.0
, mtl >=2.2.1 && <3
, free >=4.12.3 && <6
, semigroups >=0.18.1 && <1
, profunctors >=5.2 && <6
, transformers >=0.5.0.0 && <1
hs-source-dirs: src
default-language: Haskell2010
if flag(arrow-tr)
build-depends: arrows >=0.2
Test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
other-modules: Common.RandomProc,
Types.BasicSpec,
Types.ChoiceSpec,
Types.LoopSpec,
Types.PlanSpec,
Types.RuleSpec,
Types.SwitchSpec,
Types.StepExecutionSpec,
Utils.SourceSpec,
Misc.PumpSpec
build-depends: base >=4.0 && <5.0, mtl >=2.2.1, profunctors >=5.2, QuickCheck >=1.0, hspec >=0.2.0, semigroups >=0.18.1, machinecell
build-tool-depends: hspec-discover:hspec-discover
Test-suite doctest
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: doctest.hs
build-depends: base >=4.8 && <5.0
, mtl >=2.2.1 && <3
, free >=4.12.3 && <6.0
, semigroups >=0.18.1 && <1
, semigroupoids
, comonad
, profunctors >=5.2 && <6
, transformers >=0.5.0.0 && <1
, doctest >=0.3.0
build-tool-depends: doctest-discover:doctest-discover
source-repository head
type: git
location: https://github.com/as-capabl/machinecell.git
branch: master
source-repository this
type: git
location: https://github.com/as-capabl/machinecell.git
tag: release-4.0.1-1