mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +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>
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
[package]
|
|
name = "polkadot-node-core-chain-api"
|
|
version = "7.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."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[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" }
|