mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
24 lines
716 B
TOML
24 lines
716 B
TOML
[package]
|
|
name = "polkadot-node-jaeger"
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Polkadot Jaeger primitives, but equally useful for Grafana/Tempo"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
mick-jaeger = "0.1.8"
|
|
lazy_static = "1.4"
|
|
parking_lot = "0.12.1"
|
|
polkadot-primitives = { path = "../../primitives" }
|
|
polkadot-node-primitives = { path = "../primitives" }
|
|
sc-network = { path = "../../../substrate/client/network" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
thiserror = { workspace = true }
|
|
tokio = "1.24.2"
|
|
log = { workspace = true, default-features = true }
|
|
parity-scale-codec = { version = "3.6.1", default-features = false }
|