mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
79954ae589
* Switch branch * Return chain ops parts in new_chain_ops * Remove where param from new_chain_ops * Add task manager to new_chain_ops return * Revert branch switch * Revert "Revert branch switch" This reverts commit 7c7900c047abd794ddc759aa092811db4961a7a6. * network/test/src/lib: Adjust network worker polling Companion for https://github.com/paritytech/substrate/pull/6552. * Fix adder parachain * Fix collator tests * Revert branch switch * Bump everything - Remove old migration code - Reduce deposit requried for westend * Reapply fixes * Bump locl * Fix for #6550 * Fix message Co-authored-by: Ashley Ruglys <ashley.ruglys@gmail.com> Co-authored-by: Max Inden <mail@max-inden.de>
31 lines
1.4 KiB
TOML
31 lines
1.4 KiB
TOML
[package]
|
|
name = "polkadot-availability-store"
|
|
description = "Persistent database for parachain data"
|
|
version = "0.8.14"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-erasure-coding = { path = "../erasure-coding" }
|
|
parking_lot = "0.9.0"
|
|
derive_more = "0.99"
|
|
log = "0.4.8"
|
|
futures = "0.3.4"
|
|
tokio = { version = "0.2.13", features = ["rt-core"] }
|
|
exit-future = "0.2.0"
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
|
|
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" }
|
|
kvdb = "0.6.0"
|
|
kvdb-memorydb = "0.6.0"
|
|
|
|
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
|
kvdb-rocksdb = "0.8.0"
|