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
42 lines
972 B
TOML
42 lines
972 B
TOML
[package]
|
|
name = "pezsp-genesis-builder"
|
|
version = "0.8.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bizinikiwi RuntimeGenesisConfig builder API"
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { features = ["bytes"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
|
|
pezsp-api = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
serde_json = { features = ["alloc", "arbitrary_precision"], workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"pezsp-api/std",
|
|
"pezsp-runtime/std",
|
|
"scale-info/std",
|
|
"serde_json/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|
|
try-runtime = ["pezsp-api/try-runtime", "pezsp-runtime/try-runtime"]
|
|
serde = []
|