Cargo.toml 1.07 KB
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
derive_more = "0.99.9"
9
futures = "0.3.5"
10
11
log = "0.4.8"

12
13
14
15
16
17
18
19
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" }
20
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
21
22
23
24
25

[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"
26
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }