267fcec12d
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
36 lines
986 B
TOML
36 lines
986 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
|
|
documentation.workspace = true
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true, default-features = true }
|
|
futures-util = { workspace = true, default-features = true }
|
|
gum = { workspace = true, default-features = true }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { features = [
|
|
"macros",
|
|
"net",
|
|
"rt-multi-thread",
|
|
"sync",
|
|
], workspace = true }
|
|
tokio-tungstenite = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = ["gum/runtime-benchmarks"]
|
|
std = ["gum/std"]
|
|
serde = []
|