Files
pezkuwi-subxt/client/consensus/common/Cargo.toml
T
Bastian Köcher 2317ef00df Prepare the branch
2022-04-20 15:56:24 +02:00

38 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]
futures = { version = "0.3.8", features = ["compat"] }
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
tracing = "0.1.34"
async-trait = "0.1.53"
dyn-clone = "1.0.5"
# Substrate
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
# Polkadot
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.19" }
# Cumulus
cumulus-relay-chain-interface = { path = "../../relay-chain-interface" }
[dev-dependencies]
futures-timer = "3.0.2"
# Substrate
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.19" }
# Cumulus
cumulus-test-client = { path = "../../../test/client" }