ee14a3fb31
* refactor to new parity-wasm * more errors refactoring * final test * update tests * fix merge bugs
29 lines
692 B
TOML
29 lines
692 B
TOML
[package]
|
|
name = "evm"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
bit-set = "0.4"
|
|
byteorder = "1.0"
|
|
common-types = { path = "../types" }
|
|
ethcore-util = { path = "../../util" }
|
|
ethcore-bigint = { path = "../../util/bigint" }
|
|
evmjit = { path = "../../evmjit", optional = true }
|
|
ethjson = { path = "../../json" }
|
|
heapsize = "0.4"
|
|
lazy_static = "0.2"
|
|
log = "0.3"
|
|
rlp = { path = "../../util/rlp" }
|
|
vm = { path = "../vm" }
|
|
ethcore-logger = { path = "../../logger" }
|
|
wasm-utils = { git = "https://github.com/paritytech/wasm-utils" }
|
|
hash = { path = "../../util/hash" }
|
|
parking_lot = "0.4"
|
|
|
|
[dev-dependencies]
|
|
rustc-hex = "1.0"
|
|
|
|
[features]
|
|
jit = ["evmjit"]
|