Cargo.toml 1021 Bytes
Newer Older
1
2
3
4
5
6
7
[package]
name = "polkadot-node-core-candidate-validation"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"

[dependencies]
8
futures = "0.3.12"
9
tracing = "0.1.22"
10
tracing-futures = "0.2.4"
11

12
sp-core = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master" }
thiolliere's avatar
thiolliere committed
13
parity-scale-codec = { version = "1.3.6", default-features = false, features = ["bit-vec", "derive"] }
14
15
16
17
18

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

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