Cargo.toml 1.63 KB
Newer Older
1
2
3
[package]
name = "polkadot-availability-store"
description = "Persistent database for parachain data"
Gavin Wood's avatar
Gavin Wood committed
4
version = "0.7.11"
5
authors = ["Parity Technologies <admin@parity.io>"]
6
edition = "2018"
7
8
9

[dependencies]
polkadot-primitives = { path = "../primitives" }
10
11
polkadot-erasure-coding = { path = "../erasure-coding" }
polkadot-runtime = { path = "../runtime" }
12
parking_lot = "0.9.0"
13
derive_more = "0.99"
14
log = "0.4.8"
15
16
futures = "0.3.1"
tokio = { version = "0.2.4", features = ["rt-core"] }
Gavin Wood's avatar
Gavin Wood committed
17
exit-future = "0.2.0"
18
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
19
20
21
22
23
24
25
26
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
27
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
28
29
kvdb = "0.2.0"
kvdb-memorydb = "0.2.0"
30
31

[target.'cfg(not(target_os = "unknown"))'.dependencies]
32
kvdb-rocksdb = "0.3"