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

[dependencies]
polkadot-primitives = { path = "../primitives" }
10
polkadot-erasure-coding = { path = "../erasure-coding" }
11
parking_lot = "0.9.0"
12
derive_more = "0.99"
13
log = "0.4.8"
Gavin Wood's avatar
Gavin Wood committed
14
futures = "0.3.4"
15
tokio = { version = "0.2.10", features = ["rt-core"] }
Gavin Wood's avatar
Gavin Wood committed
16
exit-future = "0.2.0"
17
codec = { package = "parity-scale-codec", version = "1.1.0", features = ["derive"] }
18
19
20
21
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" }
22
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
23
24
25
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" }
26
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
27
28
kvdb = "0.4.0"
kvdb-memorydb = "0.4.0"
29
30

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