-
Notifications
You must be signed in to change notification settings - Fork 10
/
fraxl.cabal
75 lines (69 loc) · 1.84 KB
/
fraxl.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
cabal-version: >=1.10
name: fraxl
version: 0.3.0.0
license: BSD3
license-file: LICENSE
copyright: 2016 Will Fancher
maintainer: willfancher38@gmail.com
author: Will Fancher
homepage: https://github.com/ElvishJerricco/fraxl
synopsis: Cached and parallel data fetching.
description:
Fraxl is a free monad designed to make concurrent data fetching easy.
category: Concurrency
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/ElvishJerricco/fraxl
flag install-examples
description:
Build and install example programs.
default: False
library
exposed-modules:
Control.Monad.Fraxl
Control.Monad.Fraxl.Class
Control.Monad.Trans.Fraxl
Control.Monad.Trans.Fraxl.Free
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.8 && <5,
async >=2.1.1.1 && <2.3,
exceptions >=0.8.3 && <0.11,
free >=5.0.2 && <5.2,
transformers >=0.4.2.0 && <0.6,
mtl >=2.2.2 && <2.3,
dependent-sum ==0.4.*,
dependent-map >=0.2.4.0 && <0.3,
type-aligned >=0.9.6 && <0.10,
fastsum >=0.1.0.0 && <0.2
executable examples
main-is: Main.hs
hs-source-dirs: examples/src
default-language: Haskell2010
ghc-options: -Wall
if flag(install-examples)
build-depends:
base -any,
fraxl -any,
transformers -any,
mtl -any
else
buildable: False
benchmark monadbench
type: exitcode-stdio-1.0
main-is: MonadBench.hs
hs-source-dirs: tests
other-modules:
ExampleDataSource
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
base -any,
fraxl -any,
time -any