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.
67 lines
1.8 KiB
TOML
67 lines
1.8 KiB
TOML
[package]
|
|
name = "pezpallet-collective"
|
|
version = "28.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Collective system: Members of a set of account IDs can make their collective feelings known through dispatched calls from one of two specialized origins."
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
docify = { workspace = true }
|
|
log = { workspace = true }
|
|
pezframe-benchmarking = { optional = true, workspace = true }
|
|
pezframe-support = { features = ["experimental"], workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezpallet-balances = { workspace = true, default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"log/std",
|
|
"pezframe-benchmarking?/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezpallet-balances/std",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime/std",
|
|
"scale-info/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-benchmarking/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-benchmarking?/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
with-tracing = []
|
|
tuples-96 = []
|