Cargo.toml 1.38 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.8.13"
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.13", features = ["rt-core"] }
Gavin Wood's avatar
Gavin Wood committed
16
exit-future = "0.2.0"
17
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
Ashley Ruglys's avatar
Ashley Ruglys committed
18
19
20
21
22
23
24
25
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
26
27
kvdb = "0.6.0"
kvdb-memorydb = "0.6.0"
28
29

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