-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhanoi.cabal
109 lines (91 loc) · 2.25 KB
/
hanoi.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
name: hanoi
version: 0.1.0.0
synopsis: Library for automata and the HOA format
description: A library for ω-regular automata and processing of files in HOA format
author: Felix Klein <[email protected]>
Philippe Heim <[email protected]>
Gideon Geier <[email protected]>
Marvin Stenger <[email protected]>
maintainer: Felix Klein <[email protected]>
Philippe Heim <[email protected]>
Gideon Geier <[email protected]>
Marvin Stenger <[email protected]>
license: MIT
license-file: LICENSE
category: Automata
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/reactive-systems/hanoi
library
ghc-options:
-Wall -Wno-name-shadowing -fno-ignore-asserts
build-depends:
base >=4.7
, containers >= 0.6.0.1
, finite >= 1.4.1
, parsec
exposed-modules:
Hanoi
other-modules:
HOA.Format
HOA.Formula
HOA.Parser
HOA.Parser.Util
HOA.Parser.Data
HOA.Parser.Header
HOA.Parser.Body
HOA.Parser.LabelExpr
HOA.Parser.AccCond
HOA.Parser.AccName
HOA.Parser.Properties
HOA.Printer
HOA.Sanitizer
HOA.Utils
hs-source-dirs:
src/lib
default-language:
Haskell2010
test-suite default
type:
detailed-0.9
test-module:
Test
other-modules:
SpotBasedTest
HOAExamplesTest
Hanoi
HOA.Format
HOA.Formula
HOA.Parser
HOA.Parser.Util
HOA.Parser.Data
HOA.Parser.Header
HOA.Parser.Body
HOA.Parser.LabelExpr
HOA.Parser.AccCond
HOA.Parser.AccName
HOA.Parser.Properties
HOA.Printer
HOA.Sanitizer
HOA.Utils
hs-source-dirs:
src/test
src/lib
ghc-options:
-Wall -Wno-name-shadowing -fno-ignore-asserts
build-depends:
base >=4.7 && <4.15
, containers >= 0.6.0.1 && <0.7
, finite >= 1.4.1
, automata-tools-wrappers
, parsec
, QuickCheck
, Cabal >=2.4
, hanoi
, directory >= 1.3.3.0
, process >= 1.6.5.0
, temporary >= 1.3
default-language:
Haskell2010