24 lines
525 B
TOML
24 lines
525 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" }
|
||
|
parity-wasm = "0.12"
|
||
|
wasm-utils = { git = "https://github.com/paritytech/wasm-utils" }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
rustc-hex = "1.0"
|
||
|
|
||
|
[features]
|
||
|
jit = ["evmjit"]
|