Files
pezkuwi-subxt/polkadot/runtime/metrics/Cargo.toml
T
alvicsam f441a5fc93 Diener workspacify
Signed-off-by: alvicsam <alvicsam@gmail.com>
2023-08-25 11:05:17 +02:00

27 lines
924 B
TOML

[package]
name = "polkadot-runtime-metrics"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
sp-std = { package = "sp-std", path = "../../../substrate/primitives/std", default-features = false}
sp-tracing = { path = "../../../substrate/primitives/tracing", default-features = false }
parity-scale-codec = { version = "3.6.1", default-features = false }
primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false }
frame-benchmarking = { path = "../../../substrate/frame/benchmarking", default-features = false, optional = true }
bs58 = { version = "0.4.0", default-features = false, features = ["alloc"] }
[features]
default = ["std"]
std = [
"sp-std/std",
"sp-tracing/std",
"parity-scale-codec/std",
"primitives/std",
"bs58/std"
]
runtime-metrics = ["sp-tracing/with-tracing", "frame-benchmarking"]