Cargo.toml 1 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
derive_more = "0.99.9"
9
futures = "0.3.5"
10
futures-timer = "3.0.2"
11
kvdb = "0.7.0"
12
kvdb-rocksdb = "0.9.1"
13
log = "0.4.8"
14

15
codec = { package = "parity-scale-codec", version = "1.3.1", 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
22

[dev-dependencies]
23
24
25
26
27
env_logger = "0.7.1"
assert_matches = "1.3.0"
smallvec = "1.4.2"
kvdb-memorydb = "0.7.0"

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