Cargo.toml 1.14 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
kvdb = "0.7.0"
11
kvdb-rocksdb = "0.9.1"
12
thiserror = "1.0.22"
13
tracing = "0.1.22"
14
tracing-futures = "0.2.4"
15

16
parity-scale-codec = { version = "1.3.5", 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

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

25
[dev-dependencies]
26
log = "0.4.11"
27
env_logger = "0.8.2"
28
assert_matches = "1.4.0"
29
smallvec = "1.5.0"
30
31
kvdb-memorydb = "0.7.0"

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" }