chore: format TOML files with taplo
This commit is contained in:
@@ -8,22 +8,21 @@ publish = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Zombienet sdk config builder, allow to build a network configuration"
|
||||
keywords = ["zombienet", "configuration", "sdk"]
|
||||
keywords = ["configuration", "sdk", "zombienet"]
|
||||
|
||||
[dependencies]
|
||||
regex = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
lazy_static = { workspace = true }
|
||||
multiaddr = { workspace = true }
|
||||
url = { workspace = true, features = ["serde"] }
|
||||
thiserror = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
toml = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["fs"] }
|
||||
toml = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
url = { workspace = true, features = ["serde"] }
|
||||
|
||||
# zombienet deps
|
||||
support = { workspace = true }
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -9,8 +9,8 @@ default_command = "polkadot"
|
||||
default_image = "docker.io/parity/polkadot:latest"
|
||||
default_db_snapshot = "https://storage.com/path/to/db_snapshot.tgz"
|
||||
default_args = [
|
||||
"-name=value",
|
||||
"--flag",
|
||||
"--flag",
|
||||
"-name=value",
|
||||
]
|
||||
|
||||
[relaychain.default_resources.requests]
|
||||
|
||||
+1
-1
@@ -6,4 +6,4 @@ default_command = "polkadot"
|
||||
name = "alice"
|
||||
|
||||
[[relaychain.nodes]]
|
||||
name = "bob"
|
||||
name = "bob"
|
||||
|
||||
Vendored
+1
-1
@@ -24,4 +24,4 @@ name = "charlie"
|
||||
rpc_port = 9946
|
||||
args = [
|
||||
"-lruntime::system=debug,runtime::multiblock-election=trace,runtime::staking=debug,runtime::staking::rc-client=trace,runtime::rc-client=debug",
|
||||
]
|
||||
]
|
||||
|
||||
+19
-20
@@ -8,47 +8,46 @@ publish = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Zombienet Orchestrator, drive network spwan through providers"
|
||||
keywords = ["zombienet", "orchestrator", "sdk"]
|
||||
keywords = ["orchestrator", "sdk", "zombienet"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
tokio = { workspace = true, features = ["time"] }
|
||||
thiserror = { workspace = true }
|
||||
multiaddr = { workspace = true }
|
||||
serde_json = { workspace = true, features = ["arbitrary_precision"] }
|
||||
futures = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
sha2 = { workspace = true, default-features = false }
|
||||
async-trait = { workspace = true }
|
||||
fancy-regex = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
glob-match = { workspace = true }
|
||||
hex = { workspace = true }
|
||||
sp-core = { workspace = true }
|
||||
libp2p = { workspace = true }
|
||||
libsecp256k1 = { workspace = true }
|
||||
multiaddr = { workspace = true }
|
||||
pezkuwi-subxt = { workspace = true }
|
||||
pezkuwi-subxt-signer = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true, features = ["arbitrary_precision"] }
|
||||
sha2 = { workspace = true, default-features = false }
|
||||
sp-core = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["time"] }
|
||||
tracing = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
glob-match = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
libsecp256k1 = { workspace = true }
|
||||
fancy-regex = { workspace = true }
|
||||
# staging-chain-spec-builder = { workspace = true }
|
||||
# parity-scale-codec = { version = "3.7.5", features = ["derive"] }
|
||||
# sc-chain-spec = {workspace = true, default-features = false}
|
||||
sc-chain-spec = { workspace = true }
|
||||
erased-serde = { workspace = true }
|
||||
sc-chain-spec = { workspace = true }
|
||||
|
||||
# Zombienet deps
|
||||
configuration = { workspace = true }
|
||||
support = { workspace = true }
|
||||
provider = { workspace = true }
|
||||
prom-metrics-parser = { workspace = true }
|
||||
provider = { workspace = true }
|
||||
support = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
toml = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
lazy_static = { workspace = true }
|
||||
|
||||
toml = { workspace = true }
|
||||
|
||||
@@ -8,7 +8,7 @@ publish = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Prometheus metric parser, parse metrics provided by internal prometheus server"
|
||||
keywords = ["zombienet", "prometheus"]
|
||||
keywords = ["prometheus", "zombienet"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
+20
-20
@@ -8,40 +8,40 @@ publish = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Zombienet provider, implement the logic to run the nodes in the native provider"
|
||||
keywords = ["zombienet", "provider", "native"]
|
||||
keywords = ["native", "provider", "zombienet"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
anyhow = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
erased-serde = { workspace = true }
|
||||
flate2 = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
hex = { workspace = true }
|
||||
k8s-openapi = { workspace = true, features = ["v1_27"] }
|
||||
kube = { workspace = true, features = ["runtime", "ws"] }
|
||||
nix = { workspace = true, features = ["signal"] }
|
||||
regex = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive", "rc"] }
|
||||
serde_json = { workspace = true }
|
||||
serde_yaml = { workspace = true }
|
||||
sha2 = { workspace = true }
|
||||
tar = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = [
|
||||
"process",
|
||||
"macros",
|
||||
"fs",
|
||||
"time",
|
||||
"rt",
|
||||
"fs",
|
||||
"macros",
|
||||
"process",
|
||||
"rt",
|
||||
"time",
|
||||
] }
|
||||
tokio-util = { workspace = true, features = ["compat"] }
|
||||
thiserror = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
uuid = { workspace = true, features = ["v4"] }
|
||||
nix = { workspace = true, features = ["signal"] }
|
||||
kube = { workspace = true, features = ["ws", "runtime"] }
|
||||
k8s-openapi = { workspace = true, features = ["v1_27"] }
|
||||
tar = { workspace = true }
|
||||
sha2 = { workspace = true }
|
||||
hex = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
url = { workspace = true }
|
||||
flate2 = { workspace = true }
|
||||
erased-serde = { workspace = true }
|
||||
uuid = { workspace = true, features = ["v4"] }
|
||||
|
||||
# Zomebienet deps
|
||||
support = { workspace = true }
|
||||
configuration = { workspace = true }
|
||||
support = { workspace = true }
|
||||
|
||||
+5
-5
@@ -8,17 +8,17 @@ publish = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Zombienet SDK, entrypoint for using zombienet"
|
||||
keywords = ["zombienet", "sdk"]
|
||||
keywords = ["sdk", "zombienet"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
async-trait = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
lazy_static = { workspace = true }
|
||||
pezkuwi-subxt = { workspace = true }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["subxt"] }
|
||||
tokio = { workspace = true }
|
||||
|
||||
# Zombienet deps
|
||||
configuration = { workspace = true }
|
||||
@@ -27,7 +27,7 @@ provider = { workspace = true }
|
||||
support = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tracing-subscriber = { workspace = true }
|
||||
kube = { workspace = true, features = ["ws", "runtime"] }
|
||||
k8s-openapi = { workspace = true, features = ["v1_27"] }
|
||||
serde_json = {workspace = true }
|
||||
kube = { workspace = true, features = ["runtime", "ws"] }
|
||||
serde_json = { workspace = true }
|
||||
tracing-subscriber = { workspace = true }
|
||||
|
||||
+6
-6
@@ -13,16 +13,16 @@ keywords = ["zombienet"]
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
thiserror = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
uuid = { workspace = true, features = ["v4"] }
|
||||
lazy_static = { workspace = true }
|
||||
nix = { workspace = true, features = ["signal"] }
|
||||
rand = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
lazy_static = { workspace = true }
|
||||
reqwest = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
tracing = { workspace = true }
|
||||
uuid = { workspace = true, features = ["v4"] }
|
||||
|
||||
Reference in New Issue
Block a user