2016-07-11 09:42:41 +02:00
|
|
|
[package]
|
2017-02-15 16:58:42 +01:00
|
|
|
name = "evmbin"
|
2016-07-11 09:42:41 +02:00
|
|
|
description = "Parity's EVM implementation"
|
|
|
|
version = "0.1.0"
|
2016-12-11 19:43:58 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-07-11 09:42:41 +02:00
|
|
|
|
2016-07-12 09:49:16 +02:00
|
|
|
[[bin]]
|
2017-03-14 13:08:55 +01:00
|
|
|
name = "parity-evm"
|
2016-07-12 09:49:16 +02:00
|
|
|
path = "./src/main.rs"
|
|
|
|
|
2016-07-11 09:42:41 +02:00
|
|
|
[dependencies]
|
2017-07-06 11:36:15 +02:00
|
|
|
docopt = "0.8"
|
2018-06-25 11:21:45 +02:00
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers", "json-tests"] }
|
2017-08-28 14:25:16 +02:00
|
|
|
ethjson = { path = "../json" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
2018-01-11 17:49:10 +01:00
|
|
|
ethcore-transaction = { path = "../ethcore/transaction" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
2017-07-12 13:09:17 +02:00
|
|
|
evm = { path = "../ethcore/evm" }
|
2018-01-20 20:28:25 +01:00
|
|
|
panic_hook = { path = "../util/panic_hook" }
|
2018-01-11 17:49:10 +01:00
|
|
|
rustc-hex = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
vm = { path = "../ethcore/vm" }
|
2016-10-18 12:13:49 +02:00
|
|
|
|
2017-10-20 15:40:25 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "0.1"
|
2018-03-14 12:26:20 +01:00
|
|
|
tempdir = "0.3"
|
2017-10-20 15:40:25 +02:00
|
|
|
|
2016-10-18 12:13:49 +02:00
|
|
|
[features]
|
|
|
|
evm-debug = ["ethcore/evm-debug-tests"]
|