forked from ethereum/hevm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hevm.cabal
386 lines (370 loc) · 9.02 KB
/
hevm.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
cabal-version: 3.0
name:
hevm
version:
0.50.4
synopsis:
Ethereum virtual machine evaluator
description:
Hevm implements the Ethereum virtual machine semantics.
.
It can be used as a library, and it also comes with an executable
that can run unit test suites, optionally with a visual TTY debugger.
homepage:
https://github.com/dapphub/dapptools
license:
AGPL-3.0-only
author:
Mikael Brockman, Martin Lundfall, dxo
maintainer:
category:
Ethereum
build-type:
Simple
extra-source-files:
CHANGELOG.md
bench/contracts/erc20.sol
test/contracts/lib/test.sol
test/contracts/lib/erc20.sol
test/contracts/pass/trivial.sol
test/contracts/pass/abstract.sol
test/contracts/pass/cheatCodes.sol
test/contracts/pass/constantinople.sol
test/contracts/pass/dsProvePass.sol
test/contracts/pass/invariants.sol
test/contracts/pass/libraries.sol
test/contracts/pass/loops.sol
test/contracts/pass/rpc.sol
test/contracts/fail/trivial.sol
test/contracts/fail/cheatCodes.sol
test/contracts/fail/dsProveFail.sol
test/contracts/fail/invariantFail.sol
test/scripts/convert_trace_to_json.sh
flag ci
description: Sets flags for compilation in CI
default: False
manual: True
flag devel
description: Sets flag for compilation during development
default: False
manual: True
source-repository head
type: git
location: https://github.com/ethereum/hevm.git
common shared
if flag(ci)
ghc-options: -Werror
if flag(devel)
ghc-options: -j
ghc-options:
-Wall
-Wno-unticked-promoted-constructors
-Wno-orphans
-Wno-ambiguous-fields
default-language: GHC2021
default-extensions:
DuplicateRecordFields
LambdaCase
NoFieldSelectors
OverloadedRecordDot
OverloadedStrings
OverloadedLabels
RecordWildCards
TypeFamilies
ViewPatterns
library
import: shared
exposed-modules:
EVM,
EVM.ABI,
EVM.Assembler,
EVM.Concrete,
EVM.Dapp,
EVM.Debug,
EVM.Dev,
EVM.Expr,
EVM.SMT,
EVM.Solvers,
EVM.Exec,
EVM.Facts,
EVM.Facts.Git,
EVM.Format,
EVM.Fetch,
EVM.FeeSchedule,
EVM.Hexdump,
EVM.Op,
EVM.Patricia,
EVM.Precompiled,
EVM.RLP,
EVM.Solidity,
EVM.Stepper,
EVM.StorageLayout,
EVM.SymExec,
EVM.Traversals,
EVM.CSE,
EVM.Keccak,
EVM.Transaction,
EVM.Types,
EVM.UnitTest,
EVM.Sign,
if !os(windows)
exposed-modules:
EVM.TTY,
EVM.TTYCenteredList
other-modules:
Paths_hevm
autogen-modules:
Paths_hevm
if os(linux) || os(windows)
extra-libraries: stdc++
extra-libraries:
secp256k1, ff, gmp
c-sources:
ethjet/tinykeccak.c, ethjet/ethjet.c
cxx-sources:
ethjet/ethjet-ff.cc, ethjet/blake2.cc
cxx-options:
-std=c++0x
install-includes:
ethjet/tinykeccak.h, ethjet/ethjet.h, ethjet/ethjet-ff.h, ethjet/blake2.h
build-depends:
QuickCheck >= 2.13.2 && < 2.15,
Decimal >= 0.5.1 && < 0.6,
containers >= 0.6.0 && < 0.7,
deepseq >= 1.4.4 && < 1.5,
time >= 1.11.1.1 && < 1.12,
transformers >= 0.5.6 && < 0.6,
tree-view >= 0.5 && < 0.6,
abstract-par >= 0.3.3 && < 0.4,
aeson >= 2.0.0 && < 2.1,
bytestring >= 0.11.3.1 && < 0.12,
scientific >= 0.3.6 && < 0.4,
binary >= 0.8.6 && < 0.9,
text >= 1.2.3 && < 1.3,
unordered-containers >= 0.2.10 && < 0.3,
vector >= 0.12.1 && < 0.13,
ansi-wl-pprint >= 0.6.9 && < 0.7,
base16 >= 0.3.2.0 && < 0.3.3.0,
megaparsec >= 9.0.0 && < 10.0,
mtl >= 2.2.2 && < 2.3,
directory >= 1.3.3 && < 1.4,
filepath >= 1.4.2 && < 1.5,
cereal >= 0.5.8 && < 0.6,
cryptonite >= 0.30 && < 0.31,
memory >= 0.16.0 && < 0.20,
data-dword >= 0.3.1 && < 0.4,
free >= 5.1.3 && < 5.2,
haskeline >= 0.8.0 && < 0.9,
process >= 1.6.5 && < 1.7,
optics-core >= 0.4.1 && < 0.5,
optics-extra >= 0.4.2.1 && < 0.5,
optics-th >= 0.4.1 && < 0.5,
aeson-optics >= 1.2.0.1 && < 1.3,
monad-par >= 0.3.5 && < 0.4,
async >= 2.2.4 && < 2.3,
multiset >= 0.3.4 && < 0.4,
operational >= 0.2.3 && < 0.3,
optparse-generic >= 1.3.1 && < 1.5,
quickcheck-text >= 0.1.2 && < 0.2,
restless-git >= 0.7 && < 0.8,
rosezipper >= 0.2 && < 0.3,
temporary >= 1.3 && < 1.4,
witherable >= 0.3.5 && < 0.5,
wreq >= 0.5.3 && < 0.6,
regex-tdfa >= 1.2.3 && < 1.4,
base >= 4.9 && < 5,
here >= 1.2.13 && < 1.3,
tuple >= 0.3.0.2 && < 0.4,
smt2-parser >= 0.1.0.1,
word-wrap >= 0.5 && < 0.6,
spool >= 0.1 && < 0.2,
stm >= 2.5.0 && < 2.6.0,
spawn >= 0.3 && < 0.4
if !os(windows)
build-depends:
brick >= 1.4 && < 1.5,
vty >= 5.37 && < 5.38
hs-source-dirs:
src
executable hevm
import: shared
hs-source-dirs:
hevm-cli
main-is:
hevm-cli.hs
ghc-options: -threaded -with-rtsopts=-N
other-modules:
Paths_hevm
if os(darwin)
extra-libraries: c++
ld-options: -Wl,-keep_dwarf_unwind
else
extra-libraries: stdc++
build-depends:
QuickCheck,
aeson,
ansi-wl-pprint,
async,
base,
base16,
binary,
brick,
bytestring,
containers,
cryptonite,
data-dword,
deepseq,
directory,
filepath,
free,
hevm,
memory,
mtl,
optparse-generic,
operational,
process,
quickcheck-text,
regex-tdfa,
temporary,
text,
unordered-containers,
vector,
vty,
stm,
spawn,
optics-core
if os(windows)
buildable: False
--- Test Helpers ---
common test-base
import: shared
hs-source-dirs:
test
extra-libraries:
secp256k1
other-modules:
Paths_hevm
autogen-modules:
Paths_hevm
build-depends:
HUnit >= 1.6,
QuickCheck,
quickcheck-instances,
aeson,
base,
base16,
binary,
containers,
directory,
bytestring,
filemanip,
filepath,
here,
hevm,
mtl,
data-dword,
process,
tasty >= 1.0,
tasty-hunit >= 0.10,
tasty-quickcheck >= 0.9,
tasty-expected-failure >= 0.12,
temporary,
text,
regex-tdfa,
regex,
time,
array,
vector,
tasty-bench,
stm >= 2.5.0,
spawn >= 0.3,
witherable,
smt2-parser >= 0.1.0.1,
operational,
optics-core,
optics-extra
library test-utils
import:
test-base
exposed-modules:
EVM.Test.Utils
EVM.Test.Tracing
EVM.Test.BlockchainTests
if os(windows)
buildable: False
common test-common
import:
test-base
if flag(devel)
ghc-options: -threaded -with-rtsopts=-N
build-depends:
test-utils
other-modules:
EVM.Test.Utils
EVM.Test.Tracing
EVM.Test.BlockchainTests
if os(windows)
buildable: False
if os(darwin)
extra-libraries: c++
-- https://gitlab.haskell.org/ghc/ghc/-/issues/11829
ld-options: -Wl,-keep_dwarf_unwind
else
extra-libraries: stdc++
--- Test Suites ---
test-suite test
import:
test-common
type:
exitcode-stdio-1.0
main-is:
test.hs
-- these tests require network access so we split them into a seperate test
-- suite to make it easy to skip them when running nix-build
test-suite rpc-tests
import:
test-common
type:
exitcode-stdio-1.0
main-is:
rpc.hs
test-suite ethereum-tests
import:
test-common
type:
exitcode-stdio-1.0
main-is:
BlockchainTests.hs
--- Benchmarks ---
benchmark bench
import: shared
type:
exitcode-stdio-1.0
main-is:
bench.hs
hs-source-dirs:
bench
ghc-options:
-O2
if os(darwin)
extra-libraries: c++
else
extra-libraries: stdc++
other-modules:
Paths_hevm
autogen-modules:
Paths_hevm
build-depends:
base,
tasty-bench,
tasty,
bytestring,
text,
hevm,
here,
test-utils,
filemanip,
filepath,
containers,
mtl