-
Notifications
You must be signed in to change notification settings - Fork 1
/
experiments.cabal
58 lines (54 loc) · 1.73 KB
/
experiments.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
name: experiments
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Tom Harding
maintainer: [email protected]
build-type: Simple
cabal-version: >= 1.10
library
exposed-modules: Bag
, Bag.Include
, Bag.Populate
, Bag.Types
, HList
, HList.Build
, HList.Fold
, HList.Types
, HList.Update
, HTree
, HTree.Access
, HTree.Balance
, HTree.Delete
, HTree.Insert
, HTree.Types
, OneOf
, OneOf.Fold
, OneOf.Inject
, OneOf.Types
, Utils
, Utils.Contains
, Utils.Lift
, Utils.Tuple
, Utils.Tuple.TH
-- We need QuantifiedConstraints for this to work!
if impl(ghc >= 8.6)
exposed-modules: Bag.QuantifiedInstances
build-depends: base
, aeson
, bytestring
, generic-lens
, scientific
, text
, template-haskell
, unordered-containers
, validation
, vector
hs-source-dirs: src
default-language: Haskell2010
executable test
build-depends: base
, doctest
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010