Files
pezkuwi-sdk/pezkuwi/runtime/metrics/Cargo.toml
T
pezkuwichain bfc2cc5284 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

37 lines
880 B
TOML

[package]
name = "pezkuwi-runtime-metrics"
version = "7.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
description = "Runtime metric interface for the Pezkuwi node"
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
[lints]
workspace = true
[dependencies]
codec = { workspace = true }
pezframe-benchmarking = { optional = true, workspace = true }
pezkuwi-primitives = { workspace = true }
pezsp-tracing = { workspace = true }
bs58 = { features = ["alloc"], workspace = true }
[features]
default = ["std"]
std = [
"bs58/std",
"codec/std",
"pezframe-benchmarking?/std",
"pezkuwi-primitives/std",
"pezsp-tracing/std",
]
runtime-metrics = ["pezframe-benchmarking", "pezsp-tracing/with-tracing"]
runtime-benchmarks = [
"pezframe-benchmarking?/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
]