forked from reactive-systems/tsltools
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.yaml
96 lines (88 loc) · 1.91 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: tsl
version: 2.0.0.0
synopsis: Library and tools for the TSL specification format
description: Library and tools for the TSL specification format
license: OtherLicense
license-file: LICENSE
author:
- Felix Klein <felix.klein@cispa.de>
- Mark Santolucito <mark.santolucito@yale.edu>
- Philippe Heim <philippe.heim@cispa.de>
- Gideon Geier <gideon.geier@cispa.de>
- Marvin Stenger <marvin.stenger@cispa.de>
- Wonhyuk Choi <wonhyuk.choi@columbia.edu>
- Feitong Leo Qiao <flq2101@columbia.edu>
category: Synthesis
build-type: Simple
language: Haskell2010
default-extensions:
- NamedFieldPuns
- LambdaCase
- TupleSections
extra-source-files:
- README.md
ghc-options:
- -Wall
# - -fno-ignore-asserts
- -Wno-name-shadowing
# Workaround for https://github.com/haskell/cabal/issues/4739.
# -Wnon-noportable-include-path is a Clang diagnostic flag. See
# https://clang.llvm.org/docs/DiagnosticsReference.html#wnonportable-include-path
- -optP-Wno-nonportable-include-path
dependencies:
- base >= 4.13 && <4.19
library:
source-dirs: src
ghc-options:
- -Wall
- -Wno-name-shadowing
- -fno-ignore-asserts
dependencies:
- optparse-applicative
- parsec
- hanoi
- containers
- finite
- array
- mtl
- QuickCheck
- text
- ansi-terminal
- filepath
- directory
- fgl
- transformers
- process
- pcre-heavy
- syfco
executables:
tsl:
main: Main.hs
source-dirs:
- app
ghc-options:
- -threaded
dependencies:
- tsl
- optparse-applicative
tests:
default:
# main: Test.hs
source-dirs: test
verbatim:
type: detailed-0.9
test-module: Test
when:
- condition: false
other-modules: Test
dependencies:
- tsl
- containers
- HUnit
- filepath
- directory
- Cabal
- transformers
- process
- hanoi
- QuickCheck