Files
pezkuwi-sdk/pezkuwi/runtime/metrics/Cargo.toml
T

36 lines
828 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
[lints]
workspace = true
[dependencies]
codec = { workspace = true }
frame-benchmarking = { optional = true, workspace = true }
pezkuwi-primitives = { workspace = true }
sp-tracing = { workspace = true }
bs58 = { features = ["alloc"], workspace = true }
[features]
default = ["std"]
std = [
"bs58/std",
"codec/std",
"frame-benchmarking?/std",
"pezkuwi-primitives/std",
"sp-tracing/std",
]
runtime-metrics = ["frame-benchmarking", "sp-tracing/with-tracing"]
runtime-benchmarks = [
"frame-benchmarking?/runtime-benchmarks",
"pezkuwi-primitives/runtime-benchmarks",
]