2017-07-12 13:09:17 +02:00
|
|
|
[package]
|
2019-08-12 18:55:11 +02:00
|
|
|
description = "Parity Ethereum 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"
|
|
|
|
ethereum-types = "0.4"
|
2017-08-30 16:04:47 +02:00
|
|
|
heapsize = "0.4"
|
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" }
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2018-12-28 10:33:49 +01:00
|
|
|
memory-cache = { path = "../../util/memory-cache" }
|
2020-11-04 19:11:05 +01:00
|
|
|
ethcore-builtin = { path = "../builtin" }
|
2019-05-10 13:48:52 +02:00
|
|
|
num-bigint = "0.2"
|
2017-07-12 13:09:17 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rustc-hex = "1.0"
|
2018-11-06 14:22:44 +01:00
|
|
|
criterion = "0.2"
|
2019-09-12 18:43:53 +02:00
|
|
|
hex-literal = "0.2.0"
|
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
|