bd2d665c4e
- 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.
40 lines
1013 B
TOML
40 lines
1013 B
TOML
[package]
|
|
name = "pezcumulus-primitives-proof-size-hostfunction"
|
|
version = "0.2.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Hostfunction exposing storage proof size to the runtime."
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
pezsp-externalities = { workspace = true }
|
|
pezsp-runtime-interface = { workspace = true }
|
|
pezsp-trie = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-state-machine = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"pezsp-externalities/std",
|
|
"pezsp-runtime-interface/std",
|
|
"pezsp-trie/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime-interface/runtime-benchmarks",
|
|
"pezsp-state-machine/runtime-benchmarks",
|
|
"pezsp-trie/runtime-benchmarks",
|
|
]
|
|
serde = []
|
|
with-tracing = []
|