mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 16:17:59 +00:00
9fda6cb416
* break out subsystem-util and subsystem-test-helpers into individual crates * cause all packages to check successfully
25 lines
1.0 KiB
TOML
25 lines
1.0 KiB
TOML
[package]
|
|
name = "polkadot-node-core-candidate-validation"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.5"
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
parity-scale-codec = { version = "1.3.0", default-features = false, features = ["bit-vec", "derive"] }
|
|
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-parachain = { path = "../../../parachain" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
|
derive_more = "0.99.9"
|
|
log = "0.4.8"
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
futures = { version = "0.3.5", features = ["thread-pool"] }
|
|
assert_matches = "1.3.0"
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|