mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 00:17:56 +00:00
34bd4c335b
* authority-discovery: futures 03 Future * make ci happy * use futures timer instead of tokio timer * Update core/authority-discovery/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * remove tokio 01 runtime * trigger build * kill futures01 * rename futures
31 lines
1.1 KiB
TOML
31 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.0"
|
|
|
|
[dependencies]
|
|
authority-discovery-primitives = { package = "substrate-authority-discovery-primitives", path = "./primitives" }
|
|
bytes = "0.4.12"
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.3" }
|
|
derive_more = "0.15.0"
|
|
futures-preview = "0.3.0-alpha.19"
|
|
libp2p = { version = "0.12.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
|
|
log = "0.4.8"
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
primitives = { package = "substrate-primitives", path = "../primitives" }
|
|
prost = "0.5.0"
|
|
serde_json = "1.0.41"
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
futures-timer = "0.4"
|
|
|
|
[dev-dependencies]
|
|
parking_lot = "0.9.0"
|
|
peerset = { package = "substrate-peerset", path = "../../core/peerset" }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
|