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`
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
description = "Non-instant BFT proof-of-authority blockchain engine"
|
|
name = "authority-round"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0"
|
|
|
|
[dependencies]
|
|
block-reward = { path = "../../block-reward" }
|
|
client-traits = { path = "../../client-traits" }
|
|
common-types = { path = "../../types" }
|
|
ethereum-types = "0.8.0"
|
|
ethjson = { path = "../../../json" }
|
|
ethkey = { path = "../../../accounts/ethkey" }
|
|
engine = { path = "../../engine" }
|
|
io = { package = "ethcore-io", path = "../../../util/io" }
|
|
itertools = "0.5"
|
|
keccak-hash = "0.4.0"
|
|
lazy_static = "1.3.0"
|
|
log = "0.4"
|
|
lru-cache = "0.1"
|
|
machine = { path = "../../machine" }
|
|
macros = { path = "../../../util/macros" }
|
|
parking_lot = "0.9"
|
|
rlp = "0.4.0"
|
|
time-utils = { path = "../../../util/time-utils" }
|
|
unexpected = { path = "../../../util/unexpected" }
|
|
validator-set = { path = "../validator-set" }
|
|
|
|
[dev-dependencies]
|
|
accounts = { package = "ethcore-accounts", path = "../../../accounts" }
|
|
engine = { path = "../../engine", features = ["test-helpers"] }
|
|
env_logger = "0.6.2"
|
|
ethcore = { path = "../..", features = ["test-helpers"] }
|
|
spec = { path = "../../spec" }
|
|
state-db = { path = "../../state-db" }
|
|
validator-set = { path = "../validator-set", features = ["test-helpers"] }
|
|
serde_json = "1"
|