Files
pezkuwi-subxt/cumulus/client/consensus/relay-chain/Cargo.toml
T
alvicsam f441a5fc93 Diener workspacify
Signed-off-by: alvicsam <alvicsam@gmail.com>
2023-08-25 11:05:17 +02:00

29 lines
1.1 KiB
TOML

[package]
name = "cumulus-client-consensus-relay-chain"
description = "The relay-chain provided consensus algorithm"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
[dependencies]
async-trait = "0.1.73"
futures = "0.3.28"
parking_lot = "0.12.1"
tracing = "0.1.37"
# Substrate
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
sp-api = { path = "../../../../substrate/primitives/api" }
sp-block-builder = { path = "../../../../substrate/primitives/block-builder" }
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
sp-core = { path = "../../../../substrate/primitives/core" }
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
substrate-prometheus-endpoint = { path = "../../../../substrate/utils/prometheus" }
# Cumulus
cumulus-client-consensus-common = { path = "../common" }
cumulus-primitives-core = { path = "../../../primitives/core" }
cumulus-relay-chain-interface = { path = "../../relay-chain-interface" }