Files
pezkuwi-sdk/pezbridges/pezsnowbridge/primitives/verification/Cargo.toml
T
pezkuwichain ea341084f0 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

48 lines
1.1 KiB
TOML

[package]
name = "pezsnowbridge-verification-primitives"
description = "Snowbridge Verification Primitives"
version = "0.2.0"
authors = ["Snowfork <contact@snowfork.com>"]
edition.workspace = true
repository.workspace = true
license = "Apache-2.0"
categories = ["cryptography::cryptocurrencies"]
documentation.workspace = true
homepage = { workspace = true }
[lints]
workspace = true
[package.metadata.pezkuwi-sdk]
exclude-from-umbrella = true
[dependencies]
codec = { workspace = true }
pezframe-support = { workspace = true }
pezsnowbridge-beacon-primitives = { workspace = true }
pezsp-core = { workspace = true }
pezsp-std = { workspace = true }
scale-info = { features = ["derive"], workspace = true }
[features]
default = ["std"]
std = [
"codec/std",
"pezframe-support/std",
"pezsnowbridge-beacon-primitives/std",
"pezsp-core/std",
"pezsp-std/std",
"scale-info/std",
]
runtime-benchmarks = [
"pezframe-support/runtime-benchmarks",
"pezsnowbridge-beacon-primitives/runtime-benchmarks",
]
try-runtime = [
"pezframe-support/try-runtime",
"pezsnowbridge-beacon-primitives/try-runtime",
]
serde = []
experimental = []
tuples-96 = []