-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstubs.cabal
118 lines (106 loc) · 3.14 KB
/
stubs.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
110
111
112
113
114
115
116
117
118
cabal-version: 2.4
name: stubs
version: 0.1.0.0
synopsis:
Stub semantics for program verification
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Daniel Matichuk
bug-reports: https://github.com/GaloisInc/stubs/issues
copyright: (c) Galois, Inc 2023-2025
source-repository head
type: git
location: https://github.com/GaloisInc/stubs
category: Verification
extra-source-files: CHANGELOG.md
common shared
build-depends:
async >= 2 && < 3,
base >= 4.10 && < 5,
bytestring,
bv-sized,
containers,
exceptions,
filepath,
Glob,
lens >= 4 && < 6,
lumberjack >= 1 && < 1.1,
megaparsec >= 7 && < 10,
mtl >= 2 && < 3,
panic >= 0.4 && < 0.5,
parameterized-utils >= 2 && < 3,
parser-combinators >= 1.2 && < 1.4,
prettyprinter >= 1.7 && < 1.8,
prettyprinter-ansi-terminal,
yaml >= 0.11 && < 0.12,
text
library
build-depends: stubs-common,
stubs-wrapper,
stubs-parser,
stubs-loader,
stubs-translator
ghc-options: -Wall -Wcompat
default-language: Haskell2010
executable stubs
import: shared
main-is: Main.hs
other-modules:
Paths_stubs
autogen-modules: Paths_stubs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends:
gitrev,
optparse-applicative,
stubs
hs-source-dirs: tools/stubs
default-language: Haskell2010
ghc-options: -Wall -Wcompat -threaded -rtsopts "-with-rtsopts=-N"
test-suite stubs-tests
import: shared
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Infrastructure,
Stubs.Solver,
Stubs.SymbolicExecution,
Pipeline,
StubsStandaloneTests,
StubsOverrideTests,
ParserOverrideTests
hs-source-dirs: tests
build-depends: stubs-common,
stubs-wrapper,
stubs-parser,
stubs-loader,
stubs-translator,
binary-symbols,
vector,
nonempty-vector,
crucible-symio,
crucible,
macaw-base,
macaw-symbolic,
macaw-x86,
macaw-loader,
macaw-loader-x86,
macaw-x86-symbolic,
crucible-syntax,
crucible-llvm,
what4,
directory,
tasty,
tasty-ant-xml,
tasty-expected-failure,
tasty-hunit,
yaml >= 0.11 && < 0.12
ghc-options: -Wextra -Wcompat
default-language: Haskell2010