Files
pezkuwi-subxt/substrate/client/authority-discovery/Cargo.toml
T
Tomasz Drwięga 8778ca7dc8 [big refactor] Remove crate aliasing. (#4395)
* Rename: Phase 1.

* Unify codec.

* Fixing: Phase 2

* Fixing: Phase 3.

* Fixing: Phase 4.

* Fixing: Phase 5.

* Fixing: Phase 6.

* Fixing: Phase 7.

* Fixing: Phase 8. Tests

* Fixing: Phase 9. Tests!!!

* Fixing: Phase 10. Moar tests!

* Finally done!

* More fixes.

* Rename primitives:: to sp_core::

* Apply renames in finality-grandpa.

* Fix benches.

* Fix benches 2.

* Revert node-template.

* Fix frame-system in our modules.
2019-12-16 20:36:49 +08:00

35 lines
1.1 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 = { path = "../../primitives/authority-discovery" }
bytes = "0.4.12"
sc-client-api = { 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 = { path = "../keystore" }
libp2p = { version = "0.13.0", default-features = false, features = ["secp256k1", "libp2p-websocket"] }
log = "0.4.8"
sc-network = { path = "../network" }
sp-core = { path = "../../primitives/core" }
sp-blockchain = { path = "../../primitives/blockchain" }
prost = "0.5.0"
serde_json = "1.0.41"
sp-runtime = { path = "../../primitives/runtime" }
[dev-dependencies]
env_logger = "0.7.0"
parking_lot = "0.9.0"
sc-peerset = { path = "../peerset" }
sp-test-primitives = { path = "../../primitives/test-primitives" }
sp-api = { path = "../../primitives/api" }