Files
pezkuwi-sdk/pezcumulus/primitives/teyrchain-inherent/Cargo.toml
T
pezkuwichain bd2d665c4e fix: comprehensive feature propagation and dep:serde fixes
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates)
- Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features
- Regenerate umbrella crate with proper feature propagation
- Format all TOML files with taplo

This resolves check-umbrella and check-zepter CI failures.
2026-01-04 20:37:14 +03:00

45 lines
1.1 KiB
TOML

[package]
name = "pezcumulus-primitives-teyrchain-inherent"
version = "0.7.0"
authors.workspace = true
edition.workspace = true
description = "Inherent that needs to be present in every teyrchain block. Contains messages and a relay chain storage-proof."
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
[lints]
workspace = true
[dependencies]
async-trait = { optional = true, workspace = true }
codec = { features = ["derive"], workspace = true }
scale-info = { features = ["derive"], workspace = true }
# Bizinikiwi
pezsp-core = { workspace = true }
pezsp-inherents = { workspace = true }
pezsp-trie = { workspace = true }
# Pezcumulus
pezcumulus-primitives-core = { workspace = true }
[features]
default = ["std"]
std = [
"async-trait",
"codec/std",
"pezcumulus-primitives-core/std",
"pezsp-core/std",
"pezsp-inherents/std",
"pezsp-trie/std",
"scale-info/std",
]
runtime-benchmarks = [
"pezcumulus-primitives-core/runtime-benchmarks",
"pezsp-inherents/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
]
serde = []