Files
pezkuwi-sdk/bizinikiwi/pezframe/staking-async/ah-client/Cargo.toml
T
pezkuwichain bfc2cc5284 chore: update documentation URLs to use workspace setting
Replace all docs.rs documentation URLs with documentation.workspace = true
to inherit from the workspace's docs.pezkuwichain.io URL.
2025-12-27 17:56:39 +03:00

70 lines
2.1 KiB
TOML

[package]
name = "pezpallet-staking-async-ah-client"
description = "Pallet handling the communication with staking-rc-client. It's role is to glue the staking pezpallet (on AssetHub chain) and session pezpallet (on Relay Chain) in a transparent way."
license = "Apache-2.0"
version = "0.1.0"
edition.workspace = true
authors.workspace = true
repository.workspace = true
documentation.workspace = true
homepage = { workspace = true }
[dependencies]
codec = { workspace = true, features = ["derive"] }
log = { workspace = true }
scale-info = { workspace = true, features = ["derive"] }
serde = { features = ["alloc", "derive"], workspace = true }
pezsp-core = { workspace = true }
pezsp-runtime = { workspace = true }
pezsp-staking = { workspace = true }
pezframe-benchmarking = { workspace = true, optional = true }
pezframe-support = { workspace = true }
pezframe-system = { workspace = true }
pezpallet-authorship = { workspace = true }
pezpallet-session = { features = ["historical"], workspace = true }
pezpallet-staking-async-rc-client = { workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"log/std",
"pezframe-benchmarking?/std",
"pezframe-support/std",
"pezframe-system/std",
"pezpallet-authorship/std",
"pezpallet-session/std",
"pezpallet-staking-async-rc-client/std",
"pezsp-core/std",
"pezsp-io/std",
"pezsp-runtime/std",
"pezsp-staking/std",
"scale-info/std",
"serde/std",
]
runtime-benchmarks = [
"pezframe-benchmarking/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
"pezpallet-authorship/runtime-benchmarks",
"pezpallet-session/runtime-benchmarks",
"pezpallet-staking-async-rc-client/runtime-benchmarks",
"pezsp-io/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
"pezsp-staking/runtime-benchmarks",
]
try-runtime = [
"pezframe-support/try-runtime",
"pezframe-system/try-runtime",
"pezpallet-authorship/try-runtime",
"pezpallet-session/try-runtime",
"pezpallet-staking-async-rc-client/try-runtime",
"pezsp-runtime/try-runtime",
]
[dev-dependencies]
pezsp-io = { workspace = true }