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

[dependencies]
9
async-trait = "0.1.42"
10
futures = "0.3.15"
11
futures-timer = "3.0.2"
12
itertools = "0.10"
13
parity-scale-codec = { version = "2.0.0", default-features = false, features = ["derive"] }
14
parking_lot = { version = "0.11.1", optional = true }
15
pin-project = "1.0.7"
16
rand = "0.8.3"
17
thiserror = "1.0.23"
18
tracing = "0.1.26"
19
lru = "0.6.6"
20

21
polkadot-node-primitives = { path = "../primitives" }
22
polkadot-node-subsystem = { package = "polkadot-node-subsystem", path = "../subsystem" }
23
polkadot-node-jaeger = { path = "../jaeger" }
24
polkadot-node-metrics = { path = "../metrics" }
25
polkadot-node-network-protocol = { path = "../network/protocol" }
26
polkadot-primitives = { path = "../../primitives" }
27
polkadot-overseer = { path = "../overseer" }
28
metered-channel = { path = "../metered-channel"}
29

30
31
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
32
33
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
34
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
35
36

[dev-dependencies]
37
assert_matches = "1.4.0"
38
async-trait = "0.1.42"
39
env_logger = "0.8.4"
40
futures = { version = "0.3.15", features = ["thread-pool"] }
41
log = "0.4.13"
42
parking_lot = "0.11.1"
43
polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" }