Ethereum smart contract fuzzer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
echidna/package.yaml

68 lines
1.4 KiB

name: echidna
author: JP Smith
version: 0.0.0.1
ghc-options: -Wall -fno-warn-orphans -O2 -threaded +RTS -N -RTS
dependencies:
- aeson >= 1.3 && < 1.5
- base
- ansi-terminal
- brick
- bytestring >= 0.10.8 && < 0.11
- containers >= 0.5.7 && < 0.6
- data-dword >= 0.3.1 && < 0.4
- data-has
- deepseq
- directory >= 1.3 && < 1.4
- exceptions >= 0.8.1 && < 0.11
- hashable
- hevm
- lens >= 4.15.1 && < 4.17
- MonadRandom
- mtl >= 2.2.1 && < 2.3
- optparse-applicative >= 0.13.0 && < 0.15
- process >= 1.4.3 && < 1.7
- stm
- temporary >= 1.2.1 && < 1.4
- text >= 1.2.2 && < 1.3
- transformers
- unliftio
- vector >= 0.11.0 && < 0.13
- vty
- wl-pprint-annotated
- unix
- word8
- yaml
- unordered-containers
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