mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 15:37:56 +00:00
e8d567a1f5
* Remove redundant erasure encoding Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * Review feedback Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * fix comments Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> --------- Signed-off-by: Andrei Sandu <andrei-mihail@parity.io>
37 lines
1.4 KiB
TOML
37 lines
1.4 KiB
TOML
[package]
|
|
name = "polkadot-node-core-av-store"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
kvdb = "0.13.0"
|
|
thiserror = "1.0.31"
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
bitvec = "1.0.0"
|
|
|
|
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
|
|
erasure = { package = "polkadot-erasure-coding", path = "../../../erasure-coding" }
|
|
polkadot-node-subsystem = {path = "../../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-overseer = { path = "../../overseer" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
polkadot-node-jaeger = { path = "../../jaeger" }
|
|
|
|
[dev-dependencies]
|
|
log = "0.4.17"
|
|
env_logger = "0.9.0"
|
|
assert_matches = "1.4.0"
|
|
kvdb-memorydb = "0.13.0"
|
|
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
parking_lot = "0.12.0"
|
|
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|