mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-12 20:25:49 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
28 lines
941 B
TOML
28 lines
941 B
TOML
[package]
|
|
name = "polkadot-runtime-metrics"
|
|
version = "1.0.0"
|
|
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 = [
|
|
"bs58/std",
|
|
"frame-benchmarking?/std",
|
|
"parity-scale-codec/std",
|
|
"primitives/std",
|
|
"sp-std/std",
|
|
"sp-tracing/std",
|
|
]
|
|
runtime-metrics = [ "frame-benchmarking", "sp-tracing/with-tracing" ]
|