mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 04:01:02 +00:00
a846813493
Bumps [bs58](https://github.com/Nullus157/bs58-rs) from 0.4.0 to 0.5.0. - [Changelog](https://github.com/Nullus157/bs58-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/Nullus157/bs58-rs/compare/0.4.0...0.5.0) --- updated-dependencies: - dependency-name: bs58 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.5.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" ]
|