Cargo.toml 1.44 KiB
Newer Older
[package]
name = "polkadot-availability-store"
description = "Persistent database for parachain data"
version = "0.8.14"
authors = ["Parity Technologies <[email protected]>"]
edition = "2018"

[dependencies]
polkadot-primitives = { path = "../primitives" }
polkadot-erasure-coding = { path = "../erasure-coding" }
parking_lot = "0.9.0"
derive_more = "0.99"
Gavin Wood's avatar
Gavin Wood committed
futures = "0.3.4"
tokio = { version = "0.2.13", features = ["rt-core"] }
Gavin Wood's avatar
Gavin Wood committed
exit-future = "0.2.0"
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
Ashley Ruglys's avatar
Ashley Ruglys committed
sc-network = { git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "ashley-txpool" }
kvdb = "0.7.0"
kvdb-memorydb = "0.7.0"

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