mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +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>
27 lines
1.1 KiB
TOML
27 lines
1.1 KiB
TOML
[package]
|
|
name = "polkadot-node-core-chain-api"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "The Chain API subsystem provides access to chain related utility functions like block number to hash conversions."
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
polkadot-node-metrics = { path = "../../metrics" }
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
polkadot-node-subsystem-types = { path = "../../subsystem-types" }
|
|
sc-client-api = { path = "../../../../substrate/client/api" }
|
|
sc-consensus-babe = { path = "../../../../substrate/client/consensus/babe" }
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "0.3.21", features = ["thread-pool"] }
|
|
maplit = "1.0.2"
|
|
parity-scale-codec = "3.6.1"
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|