2d2513b35a
* network-devp2p: bump rand `0.7` * updater: bump rand `0.7` * hash-fetch: bump rand `0.7` * ethcore-sync: bump rand `0.7` * rpc: dont work yet * [private-tx] remove unused rand * [ethcore-snapshot] bump rand 0.7 * [engine clique]: bump rand 0.7 * [engine authority-round]: remove rand * [ethcore-blockchain]: bump rand 0.7 * [ethcore]: bump rand 0.7 * [ethcore-light]: bump rand 0.7 * [ethstore]: bump rand 0.7 * Fix for rand usage in rpc * [rpc]: fix test build * [ethcore-sync]: fix test build * [snapshot tests]: rand 0.7 * [ethkey]: bump rand 0.7 * [rpc]: resolve TODO incompatible `rand versions` * [ethkey] use `rust-secp256k1` master branch * fix(bad merge): ethcoore-light remove itertools * [rpc tests]: revert rpc test changes in #11139 `#11139` makes use a different `RNG/seed`, not `H64::random_using(&mut self.rand)` This commit reverts the changed tests (the generated id by `Subscribers::next_id`) * [ethkey/random]: resolve introduced `TODO`
31 lines
560 B
TOML
31 lines
560 B
TOML
[package]
|
|
description = "Parity Ethereum Key Management"
|
|
name = "ethstore"
|
|
version = "0.2.1"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
libc = "0.2"
|
|
rand = "0.7"
|
|
ethkey = { path = "../ethkey" }
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
serde_derive = "1.0"
|
|
rustc-hex = "1.0"
|
|
tiny-keccak = "1.4"
|
|
time = "0.1.34"
|
|
itertools = "0.5"
|
|
parking_lot = "0.9"
|
|
parity-crypto = "0.4.0"
|
|
ethereum-types = "0.8.0"
|
|
dir = { path = "../../util/dir" }
|
|
smallvec = "0.6"
|
|
parity-wordlist = "1.0"
|
|
tempdir = "0.3"
|
|
|
|
[dev-dependencies]
|
|
matches = "0.1"
|
|
|
|
[lib]
|