Deduplicating crate dependencies (part 3 of n) (#11614)

* Deduplicating crate dependencies (part 3 of n, `tiny_keccak`, `tokio-timer`, and co) (#11613)

The change includes:
```
tiny-keccak
tokio-timer
textwrap
winapi
rand
rand_xorshift
scopeguard
url
```

* Update rpc/src/v1/helpers/secretstore.rs

Co-Authored-By: Andronik Ordian <write@reusable.software>

* Update util/network-devp2p/src/connection.rs

Co-Authored-By: Andronik Ordian <write@reusable.software>

Co-authored-by: Andronik Ordian <write@reusable.software>
This commit is contained in:
Valentin Shergin
2020-04-09 02:03:27 -07:00
committed by GitHub
parent 12cbe93fbe
commit a5820b6ef9
24 changed files with 67 additions and 93 deletions

View File

@@ -44,13 +44,13 @@ pod = { path = "pod", optional = true }
trie-db = "0.20.0"
parity-crypto = { version = "0.5.0", features = ["publickey"], optional = true }
patricia-trie-ethereum = { path = "../util/patricia-trie-ethereum" }
rand = "0.7"
rand_xorshift = "0.2"
rand = "0.7.3"
rand_xorshift = "0.2.0"
rayon = "1.1"
registrar = { path = "../util/registrar" }
rlp = "0.4.0"
rustc-hex = "2.1.0"
scopeguard = "1.0.0"
scopeguard = "1.1.0"
serde = "1.0"
serde_derive = "1.0"
snapshot = { path = "snapshot" }

View File

@@ -19,7 +19,7 @@ itertools = "0.8.2"
kvdb = "0.4.0"
log = "0.4"
parity-bytes = "0.1"
rand = "0.7"
rand = "0.7.3"
parking_lot = "0.10.0"
rayon = "1.0"
rlp = "0.4.0"

View File

@@ -28,7 +28,7 @@ lru-cache = "0.1"
machine = { path = "../../machine" }
parity-bytes = "0.1"
parking_lot = "0.10.0"
rand = "0.7"
rand = "0.7.3"
rlp = "0.4.0"
time-utils = { path = "../../../util/time-utils" }
unexpected = { path = "../../../util/unexpected" }

View File

@@ -18,7 +18,7 @@ lazy_static = "1.3.0"
log = "0.4"
lru-cache = "0.1"
machine = { path = "../../machine" }
rand = "0.7"
rand = "0.7.3"
parking_lot = "0.10.0"
rlp = "0.4.0"
time-utils = { path = "../../../util/time-utils" }

View File

@@ -33,7 +33,7 @@ rlp = "0.4.0"
rlp-derive = "0.1"
smallvec = "1.2.0"
futures = "0.1"
rand = "0.7"
rand = "0.7.3"
bincode = "1.1"
serde = "1.0"
serde_derive = "1.0"

View File

@@ -45,10 +45,10 @@ serde_json = "1.0"
spec = { path = "../spec" }
state-db = { path = "../state-db" }
time-utils = { path = "../../util/time-utils" }
tiny-keccak = "1.4"
tiny-keccak = "2.0.2"
trace = { path = "../trace" }
transaction-pool = "2.0.1"
url = "2"
url = "2.1.1"
vm = { path = "../vm" }
[dev-dependencies]

View File

@@ -32,12 +32,12 @@ keccak-hasher = { path = "../../util/keccak-hasher" }
kvdb = "0.4.0"
log = "0.4.8"
num_cpus = "1.10.1"
rand = "0.7"
rand_xorshift = "0.2"
rand = "0.7.3"
rand_xorshift = "0.2.0"
parking_lot = "0.10.0"
rlp = "0.4.2"
rlp-derive = "0.1"
scopeguard = "1.0.0"
scopeguard = "1.1.0"
snappy = { package = "parity-snappy", version ="0.1.0" }
state-db = { path = "../state-db" }
trie-db = "0.20.0"

View File

@@ -28,8 +28,8 @@ kvdb-rocksdb = "0.6.0"
log = "0.4.8"
parking_lot = "0.10.0"
parity-crypto = { version = "0.5.0", features = ["publickey"] }
rand = "0.7"
rand_xorshift = "0.2"
rand = "0.7.3"
rand_xorshift = "0.2.0"
rlp = "0.4.2"
snappy = { package = "parity-snappy", version ="0.1.0" }
snapshot = { path = "../../snapshot", features = ["test-helpers"] }

View File

@@ -28,7 +28,7 @@ network = { package = "ethcore-network", path = "../../util/network" }
parity-runtime = "0.1.1"
parity-crypto = { version = "0.5.0", features = ["publickey"] }
parity-util-mem = "0.5.1"
rand = "0.7"
rand = "0.7.3"
parking_lot = "0.10.0"
rlp = "0.4.0"
snapshot = { path = "../snapshot" }
@@ -42,6 +42,6 @@ ethcore = { path = "..", features = ["test-helpers"] }
ethcore-io = { path = "../../util/io", features = ["mio"] }
kvdb-memorydb = "0.4.0"
machine = { path = "../machine" }
rand_xorshift = "0.2"
rand_xorshift = "0.2.0"
rustc-hex = "2.1.0"
spec = { path = "../spec" }