mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +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>
33 lines
966 B
TOML
33 lines
966 B
TOML
[package]
|
|
name = "polkadot-node-network-protocol"
|
|
version = "7.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Primitives types for the Node-side"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-channel = "1.8.0"
|
|
async-trait = "0.1.74"
|
|
hex = "0.4.3"
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-jaeger = { path = "../../jaeger" }
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
|
sc-network = { path = "../../../../substrate/client/network" }
|
|
sc-authority-discovery = { path = "../../../../substrate/client/authority-discovery" }
|
|
strum = { version = "0.24", features = ["derive"] }
|
|
futures = "0.3.21"
|
|
thiserror = { workspace = true }
|
|
fatality = "0.0.6"
|
|
rand = "0.8"
|
|
derive_more = "0.99"
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
bitvec = "1"
|
|
|
|
[dev-dependencies]
|
|
rand_chacha = "0.3.1"
|