Files
pezkuwi-sdk/pezkuwi/runtime/test-runtime/constants/Cargo.toml
T
pezkuwichain 8c4fcb3288 chore: update documentation URLs to use workspace setting
Replace all docs.rs documentation URLs with documentation.workspace = true
to inherit from the workspace's docs.pezkuwichain.io URL.
2025-12-27 17:56:39 +03:00

31 lines
784 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",
]