-
Notifications
You must be signed in to change notification settings - Fork 4
/
churros.cabal
65 lines (61 loc) · 1.84 KB
/
churros.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
cabal-version: 2.2
name: churros
version: 0.1.6.0
license-file: LICENSE
author: Lyndon Maydwell
maintainer: [email protected]
homepage: http://github.com/sordina/churros
bug-reports: http://github.com/sordina/churros/issues
build-type: Simple
license: MIT
synopsis: Channel/Arrow based streaming computation library.
category: Data, Control
description: The Churro library takes an opinionated approach to streaming
by focusing on IO processes and allowing different transport
options.
extra-doc-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: [email protected]:sordina/churros.git
common churros-dependencies
default-language: Haskell2010
build-depends:
base >= 4.10 && < 4.17,
time,
async,
stm,
containers,
random,
unagi-chan
library
import: churros-dependencies
hs-source-dirs: src
exposed-modules:
Control.Churro,
Control.Churro.Types,
Control.Churro.Prelude,
Control.Churro.Transport,
Control.Churro.Transport.Chan
Control.Churro.Transport.Unagi
Control.Churro.Transport.MVar
Control.Churro.Transport.MVar.Latest
test-suite churros-test
import: churros-dependencies
type: exitcode-stdio-1.0
hs-source-dirs: src,test
main-is: Churro/Test/Main.hs
build-depends: doctest
ghc-options: -threaded -rtsopts
other-modules:
Control.Churro
Control.Churro.Types
Control.Churro.Prelude
Control.Churro.Transport
Control.Churro.Transport.Chan
Control.Churro.Transport.Unagi
Control.Churro.Transport.Unagi.Bounded
Control.Churro.Transport.MVar
Control.Churro.Transport.MVar.Latest
Churro.Test.Examples