Cargo.toml 855 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.6.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
log = "0.4.6"
12
codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] }
13
substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
14
15
16
kvdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" }
kvdb-rocksdb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" }
kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="616b40150ded71f57f650067fcbc5c99d7c343e6" }