2017-07-12 13:09:17 +02:00
|
|
|
[package]
|
2020-03-25 17:16:51 +01:00
|
|
|
description = "OpenEthereum Virtual Machine (EVM) Rust Implementation"
|
2017-07-12 13:09:17 +02:00
|
|
|
name = "evm"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
bit-set = "0.4"
|
2018-09-04 20:13:51 +02:00
|
|
|
parity-bytes = "0.1"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2020-02-07 17:23:45 +01:00
|
|
|
parity-util-mem = "0.5.1"
|
2018-01-17 11:45:29 +01:00
|
|
|
lazy_static = "1.0"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2017-08-01 12:37:57 +02:00
|
|
|
vm = { path = "../vm" }
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2020-02-07 17:23:45 +01:00
|
|
|
parking_lot = "0.10.0"
|
2018-12-28 10:33:49 +01:00
|
|
|
memory-cache = { path = "../../util/memory-cache" }
|
2017-07-12 13:09:17 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-09-05 19:28:01 +02:00
|
|
|
criterion = "0.3"
|
2020-02-21 15:10:00 +01:00
|
|
|
hex-literal = "0.2.1"
|
2017-07-12 13:09:17 +02:00
|
|
|
|
|
|
|
[features]
|
2017-12-29 15:29:18 +01:00
|
|
|
evm-debug = []
|
|
|
|
evm-debug-tests = ["evm-debug"]
|
2018-11-06 14:22:44 +01:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "basic"
|
|
|
|
harness = false
|