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
29 lines
654 B
TOML
29 lines
654 B
TOML
[package]
|
|
name = "pez-node-primitives"
|
|
version = "2.0.0"
|
|
authors.workspace = true
|
|
description = "Bizinikiwi node low-level primitives."
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
pezsp-core = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["pezsp-core/std", "pezsp-runtime/std"]
|
|
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
|
try-runtime = ["pezsp-runtime/try-runtime"]
|
|
serde = []
|