-
Notifications
You must be signed in to change notification settings - Fork 2
/
streaming-concurrency.cabal
72 lines (68 loc) · 2.6 KB
/
streaming-concurrency.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
name: streaming-concurrency
version: 0.3.1.3
synopsis: Concurrency support for the streaming ecosystem
description:
There are two primary higher-level use-cases for this library:
.
1. Merge multiple @Stream@s together.
.
2. A conceptual @Stream@-based equivalent to @parMap@ (albeit
utilising concurrency rather than true parallelism).
.
However, low-level functions are also exposed so you can construct
your own methods of concurrently using @Stream@s (and there are also
non-@Stream@-specific functions if you wish to use it with other data
types).
license: MIT
license-file: LICENSE
author: Ivan Lazar Miljenovic
maintainer: [email protected]
copyright: Ivan Lazar Miljenovic
category: Data, Streaming
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=1.10
tested-with: GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2,
GHC == 8.4.1, GHC == 8.6.5, GHC == 8.8.1
source-repository head
type: git
location: https://github.com/haskell-streaming/streaming-concurrency.git
library
exposed-modules: Streaming.Concurrent
, Streaming.Concurrent.Lifted
build-depends: base ==4.*
, exceptions >= 0.6 && < 0.11
, lifted-async >= 0.9.3 && < 0.11
, monad-control == 1.*
, stm >= 2.4 && < 2.6
, streaming >= 0.1.4.0 && < 0.3
, streaming-with >= 0.1.0.0 && < 0.3
, transformers-base
hs-source-dirs: src
default-language: Haskell2010
test-suite merging
type: exitcode-stdio-1.0
main-is: merging.hs
build-depends: streaming-concurrency
, base
, hspec >= 2.4 && < 2.8
, QuickCheck == 2.*
, quickcheck-instances
, streaming
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall -threaded
benchmark mapping
type: exitcode-stdio-1.0
main-is: mapping.hs
build-depends: streaming-concurrency
, base
, exceptions
, HUnit
, lifted-async
, monad-control
, streaming
, testbench >= 0.2.1.0 && < 0.3
hs-source-dirs: bench
default-language: Haskell2010
ghc-options: -Wall -threaded +RTS -N -RTS