479010094e
- Remove missing cli crate from workspace members - Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml - Fix Rust import ordering with cargo fmt - Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
27 lines
605 B
TOML
27 lines
605 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" ]
|