mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 23:28:00 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
27 lines
797 B
TOML
27 lines
797 B
TOML
[package]
|
|
authors.workspace = true
|
|
name = "cumulus-relay-chain-interface"
|
|
version = "0.7.0"
|
|
edition.workspace = true
|
|
description = "Common interface for different relay chain datasources."
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
polkadot-overseer = { path = "../../../polkadot/node/overseer" }
|
|
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
|
|
sp-api = { path = "../../../substrate/primitives/api" }
|
|
sp-blockchain = { path = "../../../substrate/primitives/blockchain" }
|
|
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
|
|
futures = "0.3.28"
|
|
async-trait = "0.1.74"
|
|
thiserror = "1.0.48"
|
|
jsonrpsee-core = "0.20.3"
|
|
parity-scale-codec = "3.6.4"
|