4f26ffd447
* Fix project name, links, rename binary * Update util/version/Cargo.toml Co-Authored-By: David <dvdplm@gmail.com> * Update updater/Cargo.toml Co-Authored-By: David <dvdplm@gmail.com> * Update util/version/Cargo.toml Co-Authored-By: David <dvdplm@gmail.com> Co-authored-by: David <dvdplm@gmail.com>
30 lines
582 B
TOML
30 lines
582 B
TOML
[package]
|
|
description = "OpenEthereum Virtual Machine (EVM) Rust Implementation"
|
|
name = "evm"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
bit-set = "0.4"
|
|
parity-bytes = "0.1"
|
|
ethereum-types = "0.8.0"
|
|
parity-util-mem = "0.5.1"
|
|
lazy_static = "1.0"
|
|
log = "0.4"
|
|
vm = { path = "../vm" }
|
|
keccak-hash = "0.4.0"
|
|
parking_lot = "0.10.0"
|
|
memory-cache = { path = "../../util/memory-cache" }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
hex-literal = "0.2.1"
|
|
|
|
[features]
|
|
evm-debug = []
|
|
evm-debug-tests = ["evm-debug"]
|
|
|
|
[[bench]]
|
|
name = "basic"
|
|
harness = false
|