Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
chore: remove unused dependencies (#11432)
Browse files Browse the repository at this point in the history
* fix: compiler warnings

* chore: remove unused dependencies
  • Loading branch information
niklasad1 authored Feb 3, 2020
1 parent ccaa514 commit 1b96f98
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion ethcore/account-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ parking_lot = "0.9"
pod = { path = "../pod" }
rlp = "0.4.0"
serde = { version = "1.0", features = ["derive"] }
trace = { path = "../trace" }
trie-db = "0.18.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion ethcore/builtin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ ethereum-types = "0.8.0"
ethjson = { path = "../../json" }
keccak-hash = "0.4.0"
log = "0.4"
macros = { path = "../../util/macros" }
num = { version = "0.1", default-features = false, features = ["bigint"] }
parity-bytes = "0.1"
parity-crypto = { version = "0.4.2", features = ["publickey"] }

[dev-dependencies]
hex-literal = "0.2.1"
macros = { path = "../../util/macros" }
2 changes: 1 addition & 1 deletion ethcore/engines/validator-set/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use std::sync::Weak;
use parity_bytes::Bytes;
use ethabi_contract::use_contract;
use ethereum_types::{H256, U256, Address};
use log::{info, warn, trace};
use log::{warn, trace};
use machine::Machine;
use parking_lot::RwLock;
use common_types::{
Expand Down
2 changes: 1 addition & 1 deletion ethcore/sync/src/light_sync/sync_round.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ impl Fetcher {
}

// state transition not triggered until drain is finished.
(SyncRound::Fetch(self))
SyncRound::Fetch(self)
}
}
}
Expand Down
1 change: 0 additions & 1 deletion ipfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ edition = "2018"
[dependencies]
client-traits = { path = "../ethcore/client-traits" }
common-types = { path = "../ethcore/types" }
ethcore = { path = "../ethcore" }
bytes = { package = "parity-bytes", version = "0.1"}
ethereum-types = "0.8.0"
jsonrpc-core = "14.0.3"
Expand Down
2 changes: 1 addition & 1 deletion util/EIP-152/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ license = "GPL-3.0"
edition = "2018"

[dependencies]
rustc-hex = "2.0.1"
arrayref = "0.3.5"

[dev-dependencies]
criterion = "0.3"
rustc-hex = "2.0.1"

[[bench]]
name = "bench"
Expand Down

0 comments on commit 1b96f98

Please sign in to comment.