mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 03:18:01 +00:00
9200bfa997
* clean up cargo.toml syntax * bumping versions to 2.0 * bump networking to 0.8 * move consensus down to 0.8 * bump consensus pallets to 0.8.0, too * Upping babe and aura pallets * add remaining, missing version definitions * missed some
35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
[package]
|
|
name = "sc-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]
|
|
sp-authority-discovery = { version = "2.0.0", path = "../../primitives/authority-discovery" }
|
|
bytes = "0.4.12"
|
|
sc-client-api = { version = "2.0.0", path = "../api" }
|
|
codec = { package = "parity-scale-codec", default-features = false, version = "1.0.3" }
|
|
derive_more = "0.99.2"
|
|
futures = "0.3.1"
|
|
futures-timer = "2.0"
|
|
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
|
libp2p = { version = "0.13.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
|
|
log = "0.4.8"
|
|
sc-network = { version = "0.8", path = "../network" }
|
|
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
|
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
|
prost = "0.5.0"
|
|
serde_json = "1.0.41"
|
|
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.7.0"
|
|
parking_lot = "0.9.0"
|
|
sc-peerset = { version = "2.0.0", path = "../peerset" }
|
|
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
|
|
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|