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

[dependencies]
8
futures = "0.3.12"
9
futures-timer = "3.0.2"
10
11
kvdb = "0.9.0"
kvdb-rocksdb = "0.11.0"
12
thiserror = "1.0.23"
13
tracing = "0.1.25"
14
bitvec = "0.20.1"
15

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

24
25
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }

26
[dev-dependencies]
27
log = "0.4.13"
28
env_logger = "0.8.2"
29
assert_matches = "1.4.0"
30
kvdb-memorydb = "0.9.0"
31

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