forked from crytic/echidna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
82 lines (74 loc) · 1.32 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
name: echidna
author: Trail of Bits <echidna-dev@trailofbits.com>
maintainer: Trail of Bits <echidna-dev@trailofbits.com>
version: 1.5.1
ghc-options: -Wall -fno-warn-orphans -O2 -threaded +RTS -N -RTS
dependencies:
- base
- aeson
- ansi-terminal
- base16-bytestring
- binary
- brick <= 0.46
- base16-bytestring
- bytestring
- cborg
- containers
- data-dword
- data-has
- deepseq
- extra
- directory
- exceptions
- filepath
- hashable
- hevm
- lens
- lens-aeson
- ListLike
- megaparsec
- MonadRandom
- mtl
- optparse-applicative
- process
- random
- stm
- temporary
- text
- transformers
- unix
- unliftio
- unliftio-core
- unordered-containers
- vector
- vector-instances
- vty
- wl-pprint-annotated
- word8
- yaml
default-extensions:
- OverloadedStrings
library:
source-dirs: lib/
executables:
echidna-test:
main: Main.hs
source-dirs: src/
dependencies: echidna
when:
- condition: os(linux)
ghc-options:
- -threaded
- -static
- -O2
cc-options: -static
ld-options: -static -pthread
tests:
echidna-testsuite:
main: Spec.hs
source-dirs: src/test
dependencies:
- echidna
- tasty
- tasty-hunit
- tasty-quickcheck