ci: fix TOML formatting (taplo)

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