ea6b0ec164
* removed not working evmjit, closes #8192 closes #6205 * removed evmjit from build scripts * fixed parity compile error * removed evmjit cli options * fixed invalid test config files
23 lines
433 B
TOML
23 lines
433 B
TOML
[package]
|
|
name = "evm"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
bit-set = "0.4"
|
|
ethereum-types = "0.3"
|
|
heapsize = "0.4"
|
|
lazy_static = "1.0"
|
|
log = "0.3"
|
|
vm = { path = "../vm" }
|
|
keccak-hash = { path = "../../util/hash" }
|
|
parking_lot = "0.5"
|
|
memory-cache = { path = "../../util/memory_cache" }
|
|
|
|
[dev-dependencies]
|
|
rustc-hex = "1.0"
|
|
|
|
[features]
|
|
evm-debug = []
|
|
evm-debug-tests = ["evm-debug"]
|