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)
31 lines
788 B
TOML
31 lines
788 B
TOML
[package]
|
|
name = "peztest-runtime-constants"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Pezkuwi SDK component: test runtime constants"
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
smallvec = { workspace = true, default-features = true }
|
|
|
|
pezframe-support = { workspace = true }
|
|
pezkuwi-primitives = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "pezframe-support/std", "pezkuwi-primitives/std", "pezsp-runtime/std" ]
|
|
runtime-benchmarks = [
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|