e3e2fcc285
* Bump parking_lot to 0.6 * Bump parity-wasm to 0.31 so it gets rid of parking_lot ref https://github.com/paritytech/parity-wasm/pull/206 * Update jsonrpc versions * Update wasmi and pwasm-utils version * Fix compile * Update jsonrpc crates
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.6"
|
|
memory-cache = { path = "../../util/memory_cache" }
|
|
|
|
[dev-dependencies]
|
|
rustc-hex = "1.0"
|
|
|
|
[features]
|
|
evm-debug = []
|
|
evm-debug-tests = ["evm-debug"]
|