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

@@ -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" }