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.
|
|
|
name: echidna
|
|
|
|
|
|
|
|
author: JP Smith
|
|
|
|
|
|
|
|
version: 0.0.0.1
|
|
|
|
|
|
|
|
ghc-options: -Wall
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base
|
|
|
|
- ansi-terminal
|
|
|
|
- bytestring >= 0.10.8 && < 0.11
|
|
|
|
- containers >= 0.5.7 && < 0.6
|
|
|
|
- data-dword >= 0.3.1 && < 0.4
|
|
|
|
- directory
|
|
|
|
- exceptions >= 0.8.1 && < 0.9
|
|
|
|
- hedgehog
|
|
|
|
- hevm
|
|
|
|
- lens >= 4.15.1 && < 4.16
|
|
|
|
- mtl >= 2.2.1 && < 2.3
|
|
|
|
- process >= 1.4.3 && < 1.5
|
|
|
|
- stm
|
|
|
|
- temporary >= 1.2.1 && < 1.3
|
|
|
|
- text >= 1.2.2 && < 1.3
|
|
|
|
- transformers
|
|
|
|
- vector >= 0.11.0 && < 0.13
|
|
|
|
- wl-pprint-annotated
|
|
|
|
|
|
|
|
default-extensions:
|
|
|
|
- OverloadedStrings
|
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs: lib/
|
|
|
|
|
|
|
|
executables:
|
|
|
|
echidna-test:
|
|
|
|
main: Main.hs
|
|
|
|
source-dirs: src/
|
|
|
|
dependencies: echidna
|
|
|
|
simple-example-exe:
|
|
|
|
main: Simple.hs
|
|
|
|
source-dirs: examples/simple
|
|
|
|
dependencies: echidna
|
|
|
|
state-example-exe:
|
|
|
|
main: StateMachine.hs
|
|
|
|
source-dirs: examples/state-machine
|
|
|
|
dependencies: echidna
|