-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
96 lines (90 loc) · 1.83 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
86
87
88
89
90
91
92
93
94
95
96
name: modal-tableau-interpolation
version: 0.1.0.1
synopsis: Propositional, Modal and Propositional Dynamic Logic.
description: n/a
maintainer: Malvin Gattinger <[email protected]>
license: GPL-3
category: Logic
ghc-options: -Wall -Wno-incomplete-uni-patterns
extra-source-files:
- README.md
- LICENSE
- stack.yaml
- package.yaml
- src/Logic/PDL/Parse.y
- src/Logic/PDL/Lex.x
- exec/index.html
build-tools:
- alex
- happy
library:
source-dirs:
- src
dependencies:
- ansi-terminal
- array
- base >= 4.14 && < 5
- bytestring
- containers
- deepseq
- graphviz
- hspec
- process
- QuickCheck
- random
- temporary
- text
- time
executables:
tapdleau:
source-dirs: exec
main: tapdleau.hs
ghc-options: -Wall -threaded
dependencies:
- base >= 4.8 && < 5
- containers
- deepseq
- file-embed
- scotty
- modal-tableau-interpolation
- text
- uri-encode
- warp
- js-jquery >= 3
- template-haskell
example:
source-dirs: exec
main: example.hs
dependencies:
- base >= 4.8 && < 5
- modal-tableau-interpolation
tests:
propositional:
source-dirs:
- test
main: propositional.hs
dependencies:
- base >= 4.7 && < 5
- hspec
- QuickCheck
- modal-tableau-interpolation
basicmodal:
source-dirs:
- test
main: basicmodal.hs
dependencies:
- base >= 4.7 && < 5
- hspec
- QuickCheck
- modal-tableau-interpolation
pdl:
source-dirs:
- test
main: pdl.hs
ghc-options: -with-rtsopts=-M8G
dependencies:
- base >= 4.7 && < 5
- containers
- hspec
- QuickCheck
- modal-tableau-interpolation