267fcec12d
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
35 lines
848 B
TOML
35 lines
848 B
TOML
[package]
|
|
name = "node-runtime-pez-generate-bags"
|
|
version = "3.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bag threshold generation script for pezpallet-bag-list and pez-kitchensink-runtime."
|
|
publish = false
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
pez-generate-bags = { workspace = true, default-features = true }
|
|
pez-kitchensink-runtime = { workspace = true }
|
|
|
|
# third-party
|
|
clap = { features = ["derive"], workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pez-generate-bags/runtime-benchmarks",
|
|
"pez-kitchensink-runtime/runtime-benchmarks",
|
|
]
|
|
std = ["pez-generate-bags/std"]
|
|
try-runtime = [
|
|
"pez-generate-bags/try-runtime",
|
|
"pez-kitchensink-runtime/try-runtime",
|
|
]
|
|
experimental = []
|
|
with-tracing = []
|