mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 13:17:56 +00:00
8778ca7dc8
* 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.
27 lines
983 B
TOML
27 lines
983 B
TOML
[package]
|
|
name = "sc-basic-authority"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
futures = "0.3.1"
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-blockchain = { path = "../../primitives/blockchain" }
|
|
sc-client = { path = "../" }
|
|
sc-client-api = { path = "../api" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
sp-inherents = { path = "../../primitives/inherents" }
|
|
sc-telemetry = { path = "../telemetry" }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
|
sc-block-builder = { path = "../block-builder" }
|
|
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
|
|
|
|
[dev-dependencies]
|
|
sc-transaction-pool = { path = "../../client/transaction-pool" }
|
|
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
|
parking_lot = "0.9"
|