Cargo.toml 631 Bytes
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.0"
5
authors = ["Parity Technologies <admin@parity.io>"]
6
edition = "2018"
7
8
9

[dependencies]
polkadot-primitives = { path = "../primitives" }
10
parking_lot = "0.9.0"
11
12
log = "0.4.8"
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
Ashley's avatar
Ashley committed
13
substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "ashley-update-exit-future" }
14
15
kvdb = "0.1.1"
kvdb-memorydb = "0.1.2"
16
17
18

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