-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
38 lines (32 loc) · 930 Bytes
/
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
name: cfgeq
version: 0.1.0.0
synopsis: Unsound checker for CFG equality
description: Unsound checker for checking CFG equality on strings generated up
to a specified length. Inefficient and unsound as it can only find
counterexamples and not prove the lack of a longer counterexample.
category: Validation
github: chuahou/cfgeq
maintainer: Chua Hou <[email protected]>
ghc-options:
- -Wall
- -fwarn-incomplete-uni-patterns
- -fwarn-incomplete-record-updates
- -static
default-extensions:
- LambdaCase
- TupleSections
dependencies:
- base >= 4.13 && < 5
- containers ^>= 0.6.2.1
- parsec ^>= 3.1.14.0
- mtl ^>= 2.2.2
library:
source-dirs: src
executable:
main: Main.hs
source-dirs: exe
dependencies: cfgeq
ghc-options: -threaded
extra-doc-files:
- README.md
- CHANGELOG.md