mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 08:47:57 +00:00
44 lines
1.9 KiB
TOML
44 lines
1.9 KiB
TOML
[package]
|
|
name = "cumulus-client-pov-recovery"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Cumulus-specific networking protocol"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
|
|
futures = "0.3.26"
|
|
futures-timer = "3.0.2"
|
|
rand = "0.8.5"
|
|
tracing = "0.1.37"
|
|
|
|
# Substrate
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|
|
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|
|
|
|
# Polkadot
|
|
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" }
|
|
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" }
|
|
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" }
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-relay-chain-interface = {path = "../relay-chain-interface"}
|
|
async-trait = "0.1.66"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.26.0", features = ["macros"] }
|
|
portpicker = "0.1.1"
|
|
|
|
# Cumulus
|
|
cumulus-test-service = { path = "../../test/service" }
|
|
|
|
# Substrate
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|
|
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
|