Cargo.toml 1.04 KB
Newer Older
1
[package]
2
name = "polkadot-node-subsystem"
3
4
5
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
6
description = "Subsystem traits and message definitions"
7
8

[dependencies]
9
10
11
12
13
14
15
async-trait = "0.1"
derive_more = "0.99.9"
futures = "0.3.5"
futures-timer = "3.0.2"
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" }
log = "0.4.8"
parity-scale-codec = "1.3.0"
16
parking_lot = { version = "0.10.0", optional = true }
17
18
pin-project = "0.4.22"
polkadot-node-primitives = { path = "../primitives" }
19
polkadot-primitives = { path = "../../primitives" }
20
21
polkadot-statement-table = { path = "../../statement-table" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
22
23
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
streamunordered = "0.5.1"
24
25
26
27
28
29
30
31
32

[dev-dependencies]
assert_matches = "1.3.0"
async-trait = "0.1"
futures = { version = "0.3.5", features = ["thread-pool"] }
parking_lot = "0.10.0"

[features]
test-helpers = [ "parking_lot" ]