-
Notifications
You must be signed in to change notification settings - Fork 46
/
machines.cabal
119 lines (110 loc) · 3.23 KB
/
machines.cabal
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: machines
category: Control, Enumerator
version: 0.7.3
license: BSD3
cabal-version: >= 1.10
license-file: LICENSE
author: Edward A. Kmett, Rúnar Bjarnason, Josh Cough
maintainer: Edward A. Kmett <ekmett@gmail.com>
stability: provisional
homepage: http://github.com/ekmett/machines/
bug-reports: http://github.com/ekmett/machines/issues
copyright: Copyright (C) 2012-2015 Edward A. Kmett
synopsis: Networked stream transducers
description:
Networked stream transducers
.
Rúnar Bjarnason's talk on machines can be downloaded from:
<http://web.archive.org/web/20161029161813/https://dl.dropboxusercontent.com/u/4588997/Machines.pdf>
build-type: Simple
tested-with: GHC == 7.4.2
, GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.5
, GHC == 9.6.2
extra-source-files:
.gitignore
.vim.custom
config
README.markdown
CHANGELOG.markdown
examples/LICENSE
examples/machines-examples.cabal
examples/*.hs
source-repository head
type: git
location: git://github.com/ekmett/machines.git
library
build-depends:
adjunctions >= 4.2 && < 5,
base >= 4.5 && < 5,
comonad >= 3 && < 6,
containers >= 0.3 && < 0.8,
distributive < 0.7,
pointed >= 3 && < 6,
profunctors >= 3 && < 6,
semigroupoids >= 5 && < 7,
semigroups >= 0.8.3 && < 1,
transformers >= 0.3 && < 0.7,
transformers-compat >= 0.3,
mtl >= 2 && < 2.4,
void >= 0.6.1 && < 1
exposed-modules:
Data.Machine
Data.Machine.Is
Data.Machine.Fanout
Data.Machine.Lift
Data.Machine.Mealy
Data.Machine.MealyT
Data.Machine.Moore
Data.Machine.MooreT
Data.Machine.Process
Data.Machine.Plan
Data.Machine.Runner
Data.Machine.Source
Data.Machine.Stack
Data.Machine.Tee
Data.Machine.Type
Data.Machine.Wye
Data.Machine.Group
Data.Machine.Group.General
Data.Machine.Pipe
default-language: Haskell2010
other-extensions:
FlexibleInstances
GADTs
MultiParamTypeClasses
Rank2Types
UndecidableInstances
ghc-options: -Wall -fwarn-tabs -O2 -fdicts-cheap -funbox-strict-fields
-- See https://ghc.haskell.org/trac/ghc/wiki/Migration/8.0#base-4.9.0.0
if impl(ghc >= 8.0)
ghc-options: -Wcompat -Wnoncanonical-monad-instances
if !impl(ghc >= 8.8)
ghc-options: -Wnoncanonical-monadfail-instances
else
build-depends: fail == 4.9.*
hs-source-dirs: src
benchmark benchmarks
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: benchmarks
main-is: Benchmarks.hs
ghc-options: -O2 -rtsopts -threaded
build-depends:
base >= 4.9 && < 5,
conduit >= 1.3 && < 1.4,
criterion >= 0.6 && < 1.7,
machines,
mtl >= 2 && < 2.4,
pipes >= 4 && < 4.4,
streaming >= 0.1.4 && < 0.3