Cargo.toml 1.24 KB
Newer Older
1
2
[package]
name = "polkadot-node-core-candidate-validation"
Chevdor's avatar
Chevdor committed
3
version = "0.9.9"
4
5
6
7
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
8
async-trait = "0.1.51"
9
futures = "0.3.15"
10
tracing = "0.1.26"
11

12
sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" }
13
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["bit-vec", "derive"] }
14
15
16
17

polkadot-primitives = { path = "../../../primitives" }
polkadot-parachain = { path = "../../../parachain" }
polkadot-node-primitives = { path = "../../primitives" }
18
polkadot-node-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
19
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
20

21
22
23
[target.'cfg(not(any(target_os = "android", target_os = "unknown")))'.dependencies]
polkadot-node-core-pvf = { path = "../pvf" }

24
25
[dev-dependencies]
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
26
futures = { version = "0.3.15", features = ["thread-pool"] }
27
assert_matches = "1.4.0"
28
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
29
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }