mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
25aa988f9b
* Make availability-store compile for WASM * Use --manifest-path instead * Make validation work on wasm! * Switch to Spawn trait * Migrate validation to std futures * Migrate network to std futures * Final changes to validation * Tidy up network * Tidy up validation * Switch branch * Migrate service * Get polkadot to compile via wasm! * Add browser-demo * Add initial browser file * Add browser-demo * Tidy * Temp switch back to substrate/master * tidy * Fix wasm build * Re-add release flag * Switch to polkadot-master * Revert cli tokio version to avoid libp2p panic * Update tokio version * Fix availability store tests * Fix validation tests * Remove futures01 from availability-store * Fix network tests * Small changes * Fix collator * Fix typo * Revert removal of tokio_executor that causes tokio version mismatch panic * Fix adder test parachain * Revert "Revert removal of tokio_executor that causes tokio version mismatch panic" This reverts commit cfeb50c01d8df5e209483406a711e64761b44ae9. * Update availability-store/src/worker.rs Co-Authored-By: Pierre Krieger <pierre.krieger1708@gmail.com> * Update network/src/lib.rs Co-Authored-By: Pierre Krieger <pierre.krieger1708@gmail.com> * Update network/src/lib.rs Co-Authored-By: Pierre Krieger <pierre.krieger1708@gmail.com> * Box pin changes * Asyncify network functions * Clean up browser validation worker error * Fix av store test * Nits * Fix validation test * Switch favicon * Fix validation test again * Revert "Asyncify network functions" This reverts commit f20ae6548dc482cb1e75bc80641cfe55c6131a53. * Add async blocks back in
33 lines
1.6 KiB
TOML
33 lines
1.6 KiB
TOML
[package]
|
|
name = "polkadot-availability-store"
|
|
description = "Persistent database for parachain data"
|
|
version = "0.7.9"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-erasure-coding = { path = "../erasure-coding" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
parking_lot = "0.9.0"
|
|
derive_more = "0.99"
|
|
log = "0.4.8"
|
|
futures = "0.3.1"
|
|
tokio = { version = "0.2.4", features = ["rt-core"] }
|
|
exit-future = "0.2.0"
|
|
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
keystore = { package = "sc-keystore", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
kvdb = "0.1.1"
|
|
kvdb-memorydb = "0.1.2"
|
|
|
|
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
|
kvdb-rocksdb = "0.2"
|