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.
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
name = "pezpallet-assets-freezer"
|
|
version = "0.44.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "MIT-0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Provides freezing features to `pezpallet-assets`"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true }
|
|
log = { workspace = true }
|
|
pezframe = { workspace = true, features = ["runtime"] }
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezpallet-assets = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
pezpallet-balances = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"log/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezframe/std",
|
|
"pezpallet-assets/std",
|
|
"pezpallet-balances/std",
|
|
"scale-info/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezframe/runtime-benchmarks",
|
|
"pezpallet-assets/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezframe/try-runtime",
|
|
"pezpallet-assets/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
]
|
|
serde = []
|
|
experimental = []
|
|
tuples-96 = []
|