mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-18 01:21:01 +00:00
5624bd8bf4
* Use SpawnNamed instead of Spawn in Overseer * reexport SpawnNamed and fix doc tests * Fix deps
27 lines
1.4 KiB
TOML
27 lines
1.4 KiB
TOML
[package]
|
|
name = "polkadot-node-core-backing"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.5"
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
|
erasure-coding = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
|
|
statement-table = { package = "polkadot-statement-table", path = "../../../statement-table" }
|
|
derive_more = "0.99.9"
|
|
bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = { version = "0.3.5", features = ["thread-pool"] }
|
|
subsystem-test = { package = "polkadot-subsystem-test-helpers", path = "../../test-helpers/subsystem" }
|
|
assert_matches = "1.3.0"
|