-
Notifications
You must be signed in to change notification settings - Fork 28
/
transient.cabal
89 lines (73 loc) · 2.67 KB
/
transient.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
name: transient
version: 0.6.4
author: Alberto G. Corona
extra-source-files:
ChangeLog.md README.md
maintainer: [email protected]
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
homepage: https://github.com/transient-haskell/transient
bug-reports: https://github.com/transient-haskell/transient/issues
synopsis: composing programs with multithreading, events and distributed computing
description: See <http://github.com/agocorona/transient>
Distributed primitives are in the transient-universe package. Web primitives are in the axiom package.
category: Control, Concurrency
data-dir: ""
flag debug
description: Enable debugging outputs
default: False
manual: True
library
-- Note: `stack sdist/upload` will add missing bounds (via "pvp-bounds: both") in `build-depends`
-- support GHC 7.10.3 and later; lower bounds below denote GHC 7.10.3's bundled versions
build-depends: base >= 4.8.0 && < 5
, containers >= 0.5.6
, transformers >= 0.4.2
, time >= 1.5
, directory >= 1.2.2
, bytestring >= 0.10.6
, type-level-sets
-- libraries not bundled w/ GHC
, mtl
, stm
, random
, primitive < 0.6.4
exposed-modules: Transient.Backtrack
Transient.Base
Transient.EVars
Transient.Indeterminism
Transient.Internals
Transient.Logged
Transient.Parse
exposed: True
buildable: True
default-language: Haskell2010
hs-source-dirs: src .
ghc-options: -O -threaded -rtsopts
if flag(debug)
cpp-options: -DDEBUG
source-repository head
type: git
location: https://github.com/agocorona/transient
test-suite test-transient
if !impl(ghcjs >=0.1)
build-depends:
base >= 4.8.1 && < 5
, containers >= 0.5.6
, transformers >= 0.4.2
, time >= 1.5
, directory >= 1.2.2
, bytestring >= 0.10.6
-- libraries not bundled w/ GHC
, mtl
, stm
, random
type: exitcode-stdio-1.0
main-is: TestSuite.hs
build-depends:
base >4
default-language: Haskell2010
hs-source-dirs: tests src .
ghc-options: -threaded -rtsopts