From 190c1dcede0ce00a82d130ba5fd1a873b9d3cc8a Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Sat, 14 Oct 2017 19:29:09 +0200 Subject: [PATCH] removed redundant evm deps (#6757) --- Cargo.lock | 8 -------- ethcore/evm/Cargo.toml | 6 ------ ethcore/evm/src/lib.rs | 6 ------ ethcore/vm/Cargo.toml | 2 -- 4 files changed, 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d91327baa..95b19ce35 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1040,22 +1040,16 @@ name = "evm" version = "0.1.0" dependencies = [ "bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "common-types 0.1.0", "ethcore-bigint 0.1.3", - "ethcore-logger 1.9.0", "ethcore-util 1.9.0", - "ethjson 0.1.0", "evmjit 1.9.0", "hash 0.1.0", "heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "rlp 0.2.0", "rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "vm 0.1.0", - "wasm-utils 0.1.0 (git+https://github.com/paritytech/wasm-utils)", ] [[package]] @@ -3567,9 +3561,7 @@ dependencies = [ "ethcore-bytes 0.1.0", "ethcore-util 1.9.0", "ethjson 0.1.0", - "evmjit 1.9.0", "hash 0.1.0", - "lazy_static 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", "patricia_trie 0.1.0", "rlp 0.2.0", diff --git a/ethcore/evm/Cargo.toml b/ethcore/evm/Cargo.toml index 46260c08c..17b866428 100644 --- a/ethcore/evm/Cargo.toml +++ b/ethcore/evm/Cargo.toml @@ -5,19 +5,13 @@ authors = ["Parity Technologies "] [dependencies] bit-set = "0.4" -byteorder = "1.0" -common-types = { path = "../types" } ethcore-util = { path = "../../util" } ethcore-bigint = { path = "../../util/bigint" } evmjit = { path = "../../evmjit", optional = true } -ethjson = { path = "../../json" } heapsize = "0.4" lazy_static = "0.2" log = "0.3" -rlp = { path = "../../util/rlp" } vm = { path = "../vm" } -ethcore-logger = { path = "../../logger" } -wasm-utils = { git = "https://github.com/paritytech/wasm-utils" } hash = { path = "../../util/hash" } parking_lot = "0.4" diff --git a/ethcore/evm/src/lib.rs b/ethcore/evm/src/lib.rs index 8c48ad86b..efc88d60d 100644 --- a/ethcore/evm/src/lib.rs +++ b/ethcore/evm/src/lib.rs @@ -16,16 +16,10 @@ //! Ethereum virtual machine. -extern crate byteorder; extern crate bit_set; -extern crate common_types as types; extern crate ethcore_util as util; extern crate ethcore_bigint as bigint; -extern crate ethjson; -extern crate rlp; extern crate parking_lot; -extern crate wasm_utils; -extern crate ethcore_logger; extern crate heapsize; extern crate vm; extern crate hash; diff --git a/ethcore/vm/Cargo.toml b/ethcore/vm/Cargo.toml index ade675044..7f497a642 100644 --- a/ethcore/vm/Cargo.toml +++ b/ethcore/vm/Cargo.toml @@ -11,8 +11,6 @@ ethcore-bigint = { path = "../../util/bigint" } patricia_trie = { path = "../../util/patricia_trie" } log = "0.3" common-types = { path = "../types" } -evmjit = { path = "../../evmjit", optional = true } ethjson = { path = "../../json" } -lazy_static = "0.2" rlp = { path = "../../util/rlp" } hash = { path = "../../util/hash" }