-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
95 lines (88 loc) · 1.77 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
name: iodine
version: 0.1.0.0
github: "gokhankici/iodine"
license: MIT
author: "Rami Gokhan Kici"
maintainer: "[email protected]"
copyright: "2018 Rami Gokhan Kici"
extra-source-files:
- README.md
- ChangeLog.md
synopsis: Generates the transition relation & verification conditions from a Verilog IR
category: Hardware Verification
description: Please see the README on Github at <https://github.com/gokhankici/iodine#readme>
dependencies:
- base >= 4.7 && < 5
- array
- cmdargs
- containers
- directory
- filepath
- lens
- megaparsec
- mtl
- pretty
- process
- semigroups
- unordered-containers
- ansi-terminal
- liquid-fixpoint
- deepseq
- hashable
- fgl
- fgl-visualize
- cmdargs
- random
- text
- yaml
- aeson
- bytestring
library:
source-dirs: src
exposed-modules:
- Iodine.Runner
- Iodine.Utils
ghc-options:
- -Werror
- -O2
- -fdefer-type-errors
- -fwarn-incomplete-patterns
- -fwarn-incomplete-record-updates
- -fwarn-incomplete-uni-patterns
- -fwarn-missing-signatures
- -fwarn-name-shadowing
- -fwarn-orphans
- -fwarn-overlapping-patterns
- -fwarn-redundant-constraints
- -fwarn-tabs
- -fwarn-unused-binds
- -fwarn-unused-imports
- -fwarn-unused-matches
executables:
iodine:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Werror
- -O2
dependencies:
- iodine
tests:
iodine-test:
main: Test.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Werror
- -O2
dependencies:
- iodine
- hspec
- hspec-core