mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 08:27:59 +00:00
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[package]
|
|
name = "cumulus-client-consensus-common"
|
|
description = "Cumulus specific common consensus implementations"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.68"
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
|
|
dyn-clone = "1.0.11"
|
|
futures = "0.3.28"
|
|
log = "0.4.17"
|
|
tracing = "0.1.37"
|
|
|
|
# Substrate
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.42" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../../../primitives/core" }
|
|
cumulus-relay-chain-interface = { path = "../../relay-chain-interface" }
|
|
cumulus-client-pov-recovery = { path = "../../pov-recovery" }
|
|
schnellru = "0.2.1"
|
|
|
|
[dev-dependencies]
|
|
futures-timer = "3.0.2"
|
|
|
|
# Substrate
|
|
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }
|
|
|
|
# Cumulus
|
|
cumulus-test-client = { path = "../../../test/client" }
|