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

124 lines
2.4 KiB

name: echidna
author: Trail of Bits <echidna-dev@trailofbits.com>
maintainer: Trail of Bits <echidna-dev@trailofbits.com>
version: 2.0.5
# https://github.com/haskell/cabal/issues/4739
ghc-options: -Wall -fno-warn-orphans -O2 -threaded +RTS -N -RTS -optP-Wno-nonportable-include-path
dependencies:
- base
- aeson
- base16-bytestring
- binary
- bytestring
2 years ago
- code-page
- containers
- data-bword
- data-dword
- extra
- directory
- exceptions
- filepath
- hashable
- hevm
- html-entities
- lens
- ListLike
- MonadRandom
- mtl
- optparse-applicative
- process
- random
- rosezipper
- semver
- split
- text
- transformers
- time
- unliftio
- utf8-string
- unordered-containers
- vector
- vector-instances
2 years ago
- with-utf8
- word-wrap
- yaml
language: GHC2021
default-extensions:
- LambdaCase
- OverloadedStrings
- DuplicateRecordFields
- NoFieldSelectors
- OverloadedRecordDot
library:
source-dirs: lib/
7 years ago
when:
- condition: "!os(windows)"
cpp-options: -DINTERACTIVE_UI
dependencies:
- brick
- unix
- vty
7 years ago
executables:
echidna:
main: Main.hs
source-dirs: src/
dependencies: echidna
when:
- condition: (os(linux) || os(windows)) && flag(static)
ghc-options:
- -static
- -O2
cc-options: -static
ld-options: -static -pthread
- condition: os(linux)
ghc-options:
- -O2
ld-options: -pthread
- condition: os(darwin)
extra-libraries: c++
ld-options: -Wl,-keep_dwarf_unwind
- condition: os(windows)
extra-libraries: stdc++
tests:
echidna-testsuite:
main: Spec.hs
source-dirs: src/test
dependencies:
- echidna
- tasty
- tasty-hunit
- tasty-quickcheck
when:
- condition: os(linux) && flag(static)
ghc-options:
- -static
- -O2
cc-options: -static
ld-options: -static -pthread
- condition: os(linux)
ghc-options:
- -O2
ld-options: -pthread
- condition: os(darwin)
extra-libraries: c++
ld-options: -Wl,-keep_dwarf_unwind
- condition: os(windows)
extra-libraries: stdc++
flags:
static:
description: Pass -static to ghc when linking the stack binary.
manual: true
default: false