mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12:17: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>
26 lines
878 B
TOML
26 lines
878 B
TOML
[package]
|
|
name = "zombienet-backchannel"
|
|
description = "Zombienet backchannel to notify test runner and coordinate with malus actors."
|
|
readme = "README.md"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.24.2", default-features = false, features = ["macros", "net", "rt-multi-thread", "sync"] }
|
|
url = "2.3.1"
|
|
tokio-tungstenite = "0.17"
|
|
futures-util = "0.3.30"
|
|
lazy_static = "1.4.0"
|
|
parity-scale-codec = { version = "3.6.1", features = ["derive"] }
|
|
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
|
|
thiserror = { workspace = true }
|
|
gum = { package = "tracing-gum", path = "../gum" }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
serde_json = { workspace = true, default-features = true }
|