mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 17:18:03 +00:00
49874882cf
The out-dated version (bad tag) of [polkadot image](https://github.com/paritytech/polkadot-sdk/blob/ede4a362622dfa69eb167eaa876246b1289f4b41/.gitlab/pipeline/zombienet/cumulus.yml#L31) ([docker info](https://hub.docker.com/layers/paritypr/polkadot-debug/master/images/sha256:adb1658052cf671b50c90d5cece5c7a131efa1a95978249bd5cb85a5ad654f7a?context=explore)) was used. This PR fixes this. See also: https://github.com/paritytech/polkadot-sdk/pull/2411#issuecomment-1822632724 Also adds an abstraction that allows asynchronous backends to be passed to `ChainApiSubsystem` --------- Co-authored-by: Sebastian Kunert <skunert49@gmail.com>
51 lines
2.5 KiB
TOML
51 lines
2.5 KiB
TOML
[package]
|
|
authors.workspace = true
|
|
name = "cumulus-relay-chain-minimal-node"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Minimal node implementation to be used in tandem with RPC or light-client mode."
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
# polkadot deps
|
|
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
|
polkadot-core-primitives = { path = "../../../polkadot/core-primitives" }
|
|
polkadot-overseer = { path = "../../../polkadot/node/overseer" }
|
|
polkadot-node-subsystem-util = { path = "../../../polkadot/node/subsystem-util" }
|
|
polkadot-node-network-protocol = { path = "../../../polkadot/node/network/protocol" }
|
|
|
|
polkadot-availability-recovery = { path = "../../../polkadot/node/network/availability-recovery" }
|
|
polkadot-collator-protocol = { path = "../../../polkadot/node/network/collator-protocol" }
|
|
polkadot-network-bridge = { path = "../../../polkadot/node/network/bridge" }
|
|
polkadot-node-collation-generation = { path = "../../../polkadot/node/collation-generation" }
|
|
polkadot-node-core-runtime-api = { path = "../../../polkadot/node/core/runtime-api" }
|
|
polkadot-node-core-chain-api = { path = "../../../polkadot/node/core/chain-api" }
|
|
polkadot-node-core-prospective-parachains = { path = "../../../polkadot/node/core/prospective-parachains" }
|
|
|
|
# substrate deps
|
|
sc-authority-discovery = { path = "../../../substrate/client/authority-discovery" }
|
|
sc-network = { path = "../../../substrate/client/network" }
|
|
sc-network-common = { path = "../../../substrate/client/network/common" }
|
|
sc-service = { path = "../../../substrate/client/service" }
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
substrate-prometheus-endpoint = { path = "../../../substrate/utils/prometheus" }
|
|
sc-tracing = { path = "../../../substrate/client/tracing" }
|
|
sc-utils = { path = "../../../substrate/client/utils" }
|
|
sp-api = { path = "../../../substrate/primitives/api" }
|
|
sp-consensus-babe = { path = "../../../substrate/primitives/consensus/babe" }
|
|
sp-consensus = { path = "../../../substrate/primitives/consensus/common" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-blockchain = { path = "../../../substrate/primitives/blockchain" }
|
|
tokio = { version = "1.32.0", features = ["macros"] }
|
|
|
|
# cumulus deps
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
|
cumulus-relay-chain-rpc-interface = { path = "../relay-chain-rpc-interface" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
|
|
array-bytes = "6.1"
|
|
tracing = "0.1.37"
|
|
async-trait = "0.1.73"
|
|
futures = "0.3.28"
|
|
|