-
Notifications
You must be signed in to change notification settings - Fork 14
/
holmes.cabal
134 lines (117 loc) · 4.51 KB
/
holmes.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
cabal-version: 2.4
author: Tom Harding
build-type: Simple
category: Data
extra-source-files: README.md
homepage: https://github.com/i-am-tom/holmes/
license-file: LICENSE
license: MIT
maintainer: [email protected]
name: holmes
description: A reference library for constraint-solving with propagators and CDCL.
synopsis: Tools and combinators for solving constraint problems.
version: 0.3.1.0
library
exposed-modules: Control.Monad.Cell.Class
, Control.Monad.Holmes
, Control.Monad.MoriarT
, Control.Monad.Watson
, Data.Input.Config
, Data.JoinSemilattice.Defined
, Data.JoinSemilattice.Intersect
, Data.Propagator
, Data.Holmes
other-modules: Data.JoinSemilattice.Class.Abs
, Data.JoinSemilattice.Class.Boolean
, Data.JoinSemilattice.Class.Eq
, Data.JoinSemilattice.Class.FlatMapping
, Data.JoinSemilattice.Class.Fractional
, Data.JoinSemilattice.Class.Integral
, Data.JoinSemilattice.Class.Lifting
, Data.JoinSemilattice.Class.Mapping
, Data.JoinSemilattice.Class.Merge
, Data.JoinSemilattice.Class.Ord
, Data.JoinSemilattice.Class.Sum
, Data.JoinSemilattice.Class.Zipping
, Data.CDCL
build-depends: base >= 4.12 && < 4.16
, containers >= 0.6 && < 0.7
, hashable >= 1.3 && < 1.4
, hedgehog >= 1.0 && < 1.1
, logict >= 0.7 && < 0.8
, mtl >= 2.2 && < 2.3
, primitive >= 0.7 && < 0.8
, transformers >= 0.5 && < 0.6
, unordered-containers >= 0.2 && < 0.3
ghc-options: -Wall -Wextra
hs-source-dirs: src
default-language: Haskell2010
--------------------------------------------------
-- EXAMPLE PROJECTS
test-suite examples
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base
, hashable >= 1.3 && < 1.4
, holmes
, hspec >= 2.7 && < 2.9
, split >= 0.2 && < 0.3
, unordered-containers >= 0.2 && < 0.3
, relude >= 0.6 && < 1.1
, tasty >= 1.2 && < 1.5
, tasty-discover
, tasty-hspec
other-modules: Futoshiki
, Issue14
, WaveFunctionCollapse
ghc-options: -Wall -Wextra -threaded
hs-source-dirs: examples
build-tool-depends: tasty-discover:tasty-discover
default-language: Haskell2010
--------------------------------------------------
-- UNIT TESTS
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: base
, containers >= 0.6 && < 0.7
, hashable >= 1.3 && < 1.4
, hedgehog >= 1.0 && < 1.1
, holmes
, primitive >= 0.7 && < 0.8
, transformers >= 0.5 && < 0.6
, tasty >= 1.2 && < 1.5
, tasty-discover
, tasty-hedgehog
, tasty-hspec
other-modules: Test.Control.Monad.Cell.Class
, Test.Data.Input.Config
, Test.Data.JoinSemilattice.Class.Abs
, Test.Data.JoinSemilattice.Class.Boolean
, Test.Data.JoinSemilattice.Class.Eq
, Test.Data.JoinSemilattice.Class.Fractional
, Test.Data.JoinSemilattice.Class.Integral
, Test.Data.JoinSemilattice.Class.Ord
, Test.Data.JoinSemilattice.Class.Sum
, Test.Data.JoinSemilattice.Defined
, Test.Data.JoinSemilattice.Intersect
, Test.Data.Propagator
, Test.Regression.Issue7
, Test.Util.Laws
ghc-options: -Wall -Wextra -threaded
hs-source-dirs: test
build-tool-depends: markdown-unlit:markdown-unlit
, tasty-discover:tasty-discover
default-language: Haskell2010
--------------------------------------------------
-- LITERATE HASKELL README / HSPEC RUNNER
test-suite readme
build-depends: base
, hashable >= 1.3 && < 1.4
, holmes
, hspec >= 2.7 && < 2.9
main-is: README.lhs
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -pgmL markdown-unlit -Wall
build-tool-depends: markdown-unlit:markdown-unlit