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.
39 lines
872 B
TOML
39 lines
872 B
TOML
[package]
|
|
name = "pezpallet-bags-list-fuzzer"
|
|
version = "4.0.0-dev"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Fuzzer for FRAME pezpallet bags list"
|
|
publish = false
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "bags-list"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
honggfuzz = { workspace = true }
|
|
pezframe-election-provider-support = { features = [
|
|
"fuzz",
|
|
], workspace = true, default-features = true }
|
|
pezpallet-bags-list = { features = [
|
|
"fuzz",
|
|
], workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezframe-election-provider-support/runtime-benchmarks",
|
|
"pezpallet-bags-list/runtime-benchmarks",
|
|
]
|
|
std = []
|
|
try-runtime = [
|
|
"pezframe-election-provider-support/try-runtime",
|
|
"pezpallet-bags-list/try-runtime",
|
|
]
|