Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
970 changes: 623 additions & 347 deletions Cargo.lock

Large diffs are not rendered by default.

33 changes: 12 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ default-run = "zombie-bite"


[dependencies]
zombienet-sdk = "0.4.2"
zombienet-provider = "0.4.2"
zombienet-orchestrator = "0.4.2"
zombienet-support = "0.4.2"
zombienet-configuration = "0.4.2"
zombienet-sdk = "0.4.13"
zombienet-provider = "0.4.13"
zombienet-orchestrator = "0.4.13"
zombienet-support = "0.4.13"
zombienet-configuration = "0.4.13"
clap = { version = "4.4.18", features = ["derive"] }
tokio = "1"
reqwest = { version = "0.12", features = ["json"] }
Expand All @@ -32,21 +32,12 @@ flate2 = "1.0"
sp-core = "34.0.0"
toml = "0.9"

# [[bin]]
# name = "doppelganger"
# path = "src/doppelganger_cli.rs"

# [[bin]]
# name = "regular"
# path = "src/regular.rs"

# [[bin]]
# name = "spawn"
# path = "src/from_toml.rs"

# [patch.crates-io]
# zombienet-orchestrator = { path = "../zombienet-sdk/crates/orchestrator" }
# zombienet-provider = { path = "../zombienet-sdk/crates/provider" }
# zombienet-configuration = { path = "../zombienet-sdk/crates/configuration" }
# zombienet-support = { path = "../zombienet-sdk/crates/support" }
# zombienet-sdk = { path = "../zombienet-sdk/crates/sdk" }
# local patch
#[patch.crates-io]
#zombienet-orchestrator = { path = "../zombienet-sdk/crates/orchestrator" }
#zombienet-provider = { path = "../zombienet-sdk/crates/provider" }
#zombienet-configuration = { path = "../zombienet-sdk/crates/configuration" }
#zombienet-support = { path = "../zombienet-sdk/crates/support" }
#zombienet-sdk = { path = "../zombienet-sdk/crates/sdk" }
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub enum Commands {
/// The network will be using for bite
/// If not specified, will use the value from config.
/// If not in config, defaults to polkadot.
#[arg(short = 'r', long = "rc", value_parser = clap::builder::PossibleValuesParser::new(["polkadot", "kusama", "paseo"]))]
#[arg(short = 'r', long = "rc", value_parser = clap::builder::PossibleValuesParser::new(["polkadot", "kusama", "paseo", "westend"]))]
relay: Option<String>,
/// If provided we will override the runtime as part of the process of 'bite'
/// The resulting network will be running with this runtime.
Expand Down
Loading
Loading