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

[dependencies]
8
futures = "0.3.15"
9
futures-timer = "3.0.2"
10
kvdb = "0.10.0"
11
thiserror = "1.0.26"
12
tracing = "0.1.26"
13
bitvec = "0.20.1"
14

15
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
16
17
18
erasure = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
19
20
polkadot-overseer = { path = "../../overseer" }
polkadot-primitives = { path = "../../../primitives" }
21
polkadot-node-primitives = { path = "../../primitives" }
22
23

[dev-dependencies]
24
log = "0.4.13"
25
env_logger = "0.9.0"
26
assert_matches = "1.4.0"
27
kvdb-memorydb = "0.10.0"
28

29
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
30
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
31
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
32
33
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
parking_lot = "0.11.1"