[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", ]