-
Notifications
You must be signed in to change notification settings - Fork 20
/
stm-conduit.cabal
81 lines (69 loc) · 2.24 KB
/
stm-conduit.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
Name: stm-conduit
Version: 4.0.1
Synopsis: Introduces conduits to channels, and promotes using conduits concurrently.
Description: Provides two simple conduit wrappers around STM channels - a source and a sink.
Homepage: https://github.com/cgaebel/stm-conduit
License: BSD3
License-file: LICENSE
Author: Clark Gaebel
Maintainer: cg.wowus.cg@gmail.com
Category: Concurrency, Conduit
Build-type: Simple
tested-with: GHC == 8.0.1, GHC == 8.2.1
Cabal-version: >=1.8
Library
exposed-modules:
Data.Conduit.Async
Data.Conduit.TMChan
Data.Conduit.TQueue
Data.Conduit.Utils
Data.Conduit.Async.Composition
Data.Conduit.Async.Composition.Internal
build-depends:
base == 4.*
, transformers >= 0.2 && < 0.6
, stm >= 2.4 && < 2.6
, stm-chans >= 2.0 && < 3.1
, cereal >= 0.4.0.1
, cereal-conduit >= 0.8
, conduit >= 1.0 && < 1.4
, conduit-extra >= 1.0 && < 1.4
, containers
, directory >= 1.1
, exceptions
, resourcet >= 0.3 && < 1.3
, async >= 2.0.1
, monad-loops >= 0.4.2
, unliftio >= 0.2.0 && < 0.3.0
ghc-options: -Wall -fwarn-tabs -fwarn-unused-imports
test-suite stm-conduit-doctests
type: exitcode-stdio-1.0
main-is: DocTests.hs
ghc-options: -threaded
hs-source-dirs: test/
./
build-depends: base
, doctest
test-suite stm-conduit-tests
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: test/
ghc-options: -rtsopts=all -threaded
build-Depends:
base == 4.*
, QuickCheck >= 2
, HUnit
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
, stm
, stm-conduit
, conduit
, transformers
, stm-chans
, resourcet
, directory
, unliftio
source-repository head
type: git
location: git://github.com/cgaebel/stm-conduit.git