openethereum/ethcore/evm/Cargo.toml

25 lines
502 B
TOML
Raw Normal View History

[package]
name = "evm"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
bit-set = "0.4"
ethereum-types = "0.1"
evmjit = { path = "../../evmjit", optional = true }
heapsize = "0.4"
lazy_static = "0.2"
log = "0.3"
vm = { path = "../vm" }
2017-11-10 19:04:55 +01:00
keccak-hash = { path = "../../util/hash" }
parking_lot = "0.4"
memory-cache = { path = "../../util/memory_cache" }
[dev-dependencies]
rustc-hex = "1.0"
[features]
jit = ["evmjit"]
2017-12-29 15:29:18 +01:00
evm-debug = []
evm-debug-tests = ["evm-debug"]