Cargo.toml 1.24 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.8"
9
futures-timer = "3.0.2"
10
11
kvdb = "0.8.0"
kvdb-rocksdb = "0.10.0"
12
thiserror = "1.0.23"
13
tracing = "0.1.22"
14
tracing-futures = "0.2.4"
15
bitvec = "0.17.4"
16

thiolliere's avatar
thiolliere committed
17
parity-scale-codec = { version = "1.3.6", features = ["derive"] }
18
19
20
erasure = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
21
22
polkadot-overseer = { path = "../../overseer" }
polkadot-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.8.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"