-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathsaw-remote-api.cabal
122 lines (115 loc) · 3.64 KB
/
saw-remote-api.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
119
120
121
122
cabal-version: 2.4
-- Initial package description 'saw-remote-api.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: saw-remote-api
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Kenny Foner
maintainer: [email protected]
-- copyright:
category: Network
extra-source-files: CHANGELOG.md
data-files: test-scripts/*.py
test-scripts/*.cry
test-scripts/*.bc
test-scripts/*.c
flag builtin-abc
description: Link with ABC as a static library
default: True
common warnings
ghc-options:
-Weverything
-Wno-missing-exported-signatures
-Wno-missing-import-lists
-Wno-missed-specialisations
-Wno-all-missed-specialisations
-Wno-unsafe
-Wno-safe
-Wno-missing-local-signatures
-Wno-monomorphism-restriction
-Wno-implicit-prelude
-Wno-orphans
common deps
build-depends: base >=4.11.1.0 && <4.15,
aeson,
argo,
base64-bytestring,
bytestring,
containers >= 0.6 && < 0.7,
cryptol >= 2.8.1,
cryptol-saw-core,
crucible,
crucible-jvm,
cryptonite,
cryptonite-conduit,
directory,
jvm-parser,
lens,
llvm-pretty,
llvm-pretty-bc-parser,
mtl,
parameterized-utils,
saw-core,
saw-script,
silently,
text,
unordered-containers,
vector >= 0.12 && < 0.13,
cryptol-remote-api
default-language: Haskell2010
if flag(builtin-abc)
cpp-options: -DUSE_BUILTIN_ABC
build-depends: abcBridge
else
build-depends: aig
library
import: deps, warnings
hs-source-dirs: src
exposed-modules: SAWServer,
SAWServer.CryptolExpression,
SAWServer.CryptolSetup,
SAWServer.Data.Contract,
SAWServer.Data.JVMType,
SAWServer.Data.LLVMType,
SAWServer.Data.SetupValue,
SAWServer.Exceptions,
SAWServer.JVMCrucibleSetup,
SAWServer.JVMVerify,
SAWServer.LLVMCrucibleSetup,
SAWServer.LLVMVerify,
SAWServer.NoParams,
SAWServer.OK,
SAWServer.ProofScript,
SAWServer.SaveTerm,
SAWServer.SetOption,
SAWServer.Term,
SAWServer.TopLevel,
SAWServer.TrackFile,
SAWServer.VerifyCommon
executable saw-remote-api
import: deps, warnings
main-is: Main.hs
build-depends: saw-remote-api
-- other-modules:
-- other-extensions:
hs-source-dirs: saw-remote-api
test-suite test-saw-remote-api
import: deps, warnings
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
other-modules: Paths_saw_remote_api
build-depends: argo-python,
cryptol-remote-api,
filepath,
process,
quickcheck-instances,
tasty,
tasty-hunit,
tasty-quickcheck,
tasty-script-exitcode