-
Notifications
You must be signed in to change notification settings - Fork 0
/
FairCheck.cabal
52 lines (48 loc) · 1.59 KB
/
FairCheck.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
name: FairCheck
version: 2.0
synopsis: Fair Termination Checker for Binary Sessions
homepage: http://www.di.unito.it/~padovani/Software/FairCheck/index.html
license: GPL-3
license-file: LICENSE
author: Luca Padovani
maintainer: luca.padovani@unito.it
copyright: (c) 2021 Luca Padovani
category: Language
build-type: Simple
extra-source-files: ChangeLog.md,
README.md,
examples/*.pi,
errors/*.pi,
Makefile
cabal-version: >=1.18
executable faircheck
main-is: Main.hs
other-modules: Common,
Atoms,
Type,
Process,
Resolver,
Parser,
Lexer,
Formula,
Node,
Tree,
Relation,
Predicate,
Checker,
Interpreter,
Render,
Exceptions
other-extensions: CPP
build-depends: base >=4.9,
containers >=0.5,
mtl >=2.2,
array >=0.5,
time >=1.5,
filepath >=1.4,
prettyprinter >=1.0,
prettyprinter-ansi-terminal >=1.0,
random >=1.2.1
hs-source-dirs: src
build-tools: alex, happy
default-language: Haskell2010