9c595aff95
* Feed in ActionParams on VM creation * Fix ethcore after Vm interface change * Move informant inside Interpreter struct * Move do_trace to Interpreter struct * Move all remaining exec variables to Interpreter struct * Refactor VM to allow single opcode step * Fix all EVM tests * Fix all wasm tests * Fix wasm runner tests * Fix a check case where code length is zero * Fix jsontests compile * Fix cargo lock * Use match instead of expect * Use cheaper check reader.len() == 0 for the initial special case * Get rid of try_and_done! macro by using Result<(), ReturnType> * Use Never instead of () * Fix parity-bytes path * Bypass gasometer lifetime problem by borrow only for a instance * typo: missing { * Fix ethcore test compile * Fix evm tests
24 lines
531 B
TOML
24 lines
531 B
TOML
[package]
|
|
name = "evm"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
bit-set = "0.4"
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
|
ethereum-types = "0.3"
|
|
heapsize = "0.4"
|
|
lazy_static = "1.0"
|
|
log = "0.4"
|
|
vm = { path = "../vm" }
|
|
keccak-hash = { git = "https://github.com/paritytech/parity-common" }
|
|
parking_lot = "0.6"
|
|
memory-cache = { path = "../../util/memory_cache" }
|
|
|
|
[dev-dependencies]
|
|
rustc-hex = "1.0"
|
|
|
|
[features]
|
|
evm-debug = []
|
|
evm-debug-tests = ["evm-debug"]
|