-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
85 lines (85 loc) · 2.03 KB
/
package.yaml
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
name: grisette-synth-lib
version: 0.1.0.0
synopsis: Library for building synthesizers with Grisette
description: Library for building synthesizers with Grisette
category: Formal Methods, Theorem Provers, Symbolic Computation, SMT
author: "Sirui Lu, Rastislav Bodík"
maintainer: Sirui Lu ([email protected])
license: BSD3
license-file: LICENSE
github: lsrcz/grisette-synth-lib
copyright: "2023-2024 Sirui Lu"
extra-source-files:
- CHANGELOG.md
- README.md
dependencies:
- base >= 4.14 && < 5
- grisette >= 0.11 && < 0.12
- mtl >= 2.2.2 && < 2.4
- unordered-containers >= 0.2.11 && < 0.3
- QuickCheck >= 2.14.1 && < 2.16
- quickcheck-with-counterexamples >= 1.2 && < 1.3
- sbv >= 8.17 && < 12
- hashable >= 1.3 && < 1.6
- text >= 1.2.4.1 && < 2.2
- prettyprinter >= 1.5 && < 1.8
- ordered-containers >= 0.2.3 && < 0.3
- deepseq
- graphviz >= 2999.20.0.4 && < 3000
- extra
- template-haskell
- stm
- containers
- async
- time
- psqueues
- safe-exceptions
- cereal
- bytes
- binary
- hslogger
- unix
- bytestring
- ansi-terminal
- random >= 1.2 && < 1.3
- Chart >= 1.9.3 && < 1.10
- Chart-cairo >= 1.9.3 && < 1.10
- megaparsec
- parser-combinators
ghc-options:
- -Wextra
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wmissing-import-lists
- -Wpartial-fields
- -Wunused-type-patterns
- -Wno-x-partial
- -Wno-unrecognised-warning-flags
library:
source-dirs: src
executables:
arith:
source-dirs: arith
main: Main.hs
dependencies: grisette-synth-lib
arith-sum:
source-dirs: arith-sum
main: Main.hs
dependencies: grisette-synth-lib
control:
source-dirs: control
main: Main.hs
dependencies: grisette-synth-lib
tests:
spec:
main: Main.hs
source-dirs: test
dependencies:
- grisette-synth-lib
- test-framework >= 0.8.2 && < 0.9
- test-framework-hunit >= 0.3.0.2 && < 0.4
- test-framework-quickcheck2 >= 0.3.0.5 && < 0.4
- HUnit >= 1.6