Files
pezkuwi-subxt/polkadot/node/core/av-store/Cargo.toml
T
Serban Iorga 8e95a3e1aa Align dependencies with parity-bridges-common (#3937)
Working towards migrating the `parity-bridges-common` repo inside
`polkadot-sdk`. This PR upgrades some dependencies in order to align
them with the versions used in `parity-bridges-common`

Related to
https://github.com/paritytech/parity-bridges-common/issues/2538
2024-04-02 13:41:01 +00:00

42 lines
1.6 KiB
TOML

[package]
name = "polkadot-node-core-av-store"
description = "The Availability Store subsystem. Wrapper over the DB that stores availability data and chunks."
version = "7.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
[lints]
workspace = true
[dependencies]
futures = "0.3.30"
futures-timer = "3.0.2"
kvdb = "0.13.0"
thiserror = { workspace = true }
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 = { path = "../../../../substrate/primitives/consensus/common", default-features = false }
polkadot-node-jaeger = { path = "../../jaeger" }
[dev-dependencies]
log = { workspace = true, default-features = true }
env_logger = "0.11"
assert_matches = "1.4.0"
kvdb-memorydb = "0.13.0"
sp-core = { path = "../../../../substrate/primitives/core" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
parking_lot = "0.12.1"
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }