ci: fix TOML formatting (taplo)

This commit is contained in:
2026-01-21 03:00:27 +03:00
parent 94b8d115d3
commit b1dfaccc35
2 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -41,9 +41,9 @@ web = [
"web-time",
]
std = [
"native",
"futures-util/std",
"getrandom?/std",
"native",
"serde/std",
"serde_json/std",
"smoldot-light/std",
+11 -3
View File
@@ -8,7 +8,7 @@ publish = true
license.workspace = true
repository.workspace = true
description = "Pezkuwi Zombienet CLI - Network orchestration tool for Pezkuwi blockchain testing"
keywords = ["blockchain", "pezkuwi", "cli", "zombienet"]
keywords = ["blockchain", "cli", "pezkuwi", "zombienet"]
[[bin]]
name = "pezkuwi-zombienet"
@@ -22,12 +22,20 @@ tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
# Zombienet SDK deps
pezkuwi-zombienet-sdk = { workspace = true }
configuration = { workspace = true }
orchestrator = { workspace = true }
pezkuwi-zombienet-sdk = { workspace = true }
provider = { workspace = true }
support = { workspace = true }
[features]
default = []
std = []
std = [
"anyhow/std",
"configuration/std",
"orchestrator/std",
"provider/std",
"pezkuwi-zombienet-sdk/std",
"support/std",
"tracing/std"
]