26 lines
592 B
TOML
26 lines
592 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" }
|
|
evmjit = { path = "../../evmjit", optional = true }
|
|
ethjson = { path = "../../json" }
|
|
lazy_static = "0.2"
|
|
log = "0.3"
|
|
rlp = { path = "../../util/rlp" }
|
|
vm = { path = "../vm" }
|
|
parity-wasm = "0.12"
|
|
ethcore-logger = { path = "../../logger" }
|
|
wasm-utils = { git = "https://github.com/paritytech/wasm-utils" }
|
|
|
|
[dev-dependencies]
|
|
rustc-hex = "1.0"
|
|
|
|
[features]
|
|
jit = ["evmjit"]
|