forked from patrickt/fused-effects-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fused-effects-async.cabal
70 lines (58 loc) · 2.34 KB
/
fused-effects-async.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
cabal-version: 2.0
name: fused-effects-async
version: 0.0.0.0
synopsis: Fused-effects wrappers for async and concurrent execution of IO actions.
description: Fused-effects wrappers for async and concurrent execution of IO actions.
homepage: https://github.com/patrickt/fused-effects-async
bug-reports: https://github.com/patrickt/fused-effects-async/issues
license: BSD3
license-file: LICENSE
author: Patrick Thomson
maintainer: [email protected]
copyright: 2020 Patrick Thomson
category: Control
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.8.1
source-repository head
type: git
location: https://github.com/patrickt/fused-effects-async.git
library
hs-source-dirs: src
exposed-modules: Control.Effect.Concurrent.Async
build-depends: base ^>= 4.13.0.0
, async ^>= 2.2
, fused-effects >= 1 && <2
, stm ^>= 2.5
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
-Wmissing-deriving-strategies
default-language: Haskell2010
test-suite fused-effects-async-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base ^>= 4.13.0.0
, fused-effects-async
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
-Wmissing-deriving-strategies
default-language: Haskell2010