mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 01:47:58 +00:00
b7c6bc1ed5
* Use session::validators instead of staking::current_elected * Basic test framework. * Initialize validators, attempt to heartbeat. * Use dummy crypto for im-online testing. * Remove printlns. * Finish test, make it invalid. * Add reporting test. * Finalize the test. * Remove dumbness. * Updates. * Update AuRa * Update srml/im-online/src/tests.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Derive Ord * Add some more tests. * Remove stray todo. * Bump runtime version. * Bump impl-trait-for-tuples. * Enforce new version of trait-for-tuples.
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "substrate-authority-discovery"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.5"
|
|
|
|
[dependencies]
|
|
authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", path = "./primitives" }
|
|
bytes = "0.4"
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.3" }
|
|
derive_more = "0.14.0"
|
|
futures = "0.1"
|
|
libp2p = { version = "0.12.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
|
|
log = "0.4"
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
primitives = { package = "substrate-primitives", path = "../primitives" }
|
|
prost = "0.5"
|
|
serde_json = "1.0"
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
tokio-timer = "0.2"
|
|
|
|
[dev-dependencies]
|
|
parking_lot = { version = "0.9.0" }
|
|
peerset = { package = "substrate-peerset", path = "../../core/peerset" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
|
|
tokio = { version = "0.1"}
|