Skip to content

Commit

Permalink
Fix parachain-template-test (#5821)
Browse files Browse the repository at this point in the history
Fix `parachain-template-test` (bump `zombienet` version).
Thx!
  • Loading branch information
pepoviola committed Sep 24, 2024
1 parent add37e8 commit 9036f8b
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 27 deletions.
26 changes: 14 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,7 @@ either = { version = "1.8.1", default-features = false }
emulated-integration-tests-common = { path = "cumulus/parachains/integration-tests/emulated/common", default-features = false }
enumflags2 = { version = "0.7.7" }
enumn = { version = "0.1.13" }
env_logger = { version = "0.11.2" }
environmental = { version = "1.1.4", default-features = false }
equivocation-detector = { path = "bridges/relays/equivocation" }
ethabi = { version = "1.0.0", default-features = false, package = "ethabi-decode" }
Expand Down Expand Up @@ -1299,6 +1300,8 @@ substrate-test-runtime-client = { path = "substrate/test-utils/runtime/client" }
substrate-test-runtime-transaction-pool = { path = "substrate/test-utils/runtime/transaction-pool" }
substrate-test-utils = { path = "substrate/test-utils" }
substrate-wasm-builder = { path = "substrate/utils/wasm-builder", default-features = false }
subxt = { version = "0.37", default-features = false }
subxt-signer = { version = "0.37" }
syn = { version = "2.0.77" }
sysinfo = { version = "0.30" }
tar = { version = "0.4" }
Expand Down Expand Up @@ -1368,6 +1371,7 @@ xcm-procedural = { path = "polkadot/xcm/procedural", default-features = false }
xcm-runtime-apis = { path = "polkadot/xcm/xcm-runtime-apis", default-features = false }
xcm-simulator = { path = "polkadot/xcm/xcm-simulator", default-features = false }
zeroize = { version = "1.7.0", default-features = false }
zombienet-sdk = { version = "0.2.13" }
zstd = { version = "0.12.4", default-features = false }

[profile.release]
Expand Down
20 changes: 10 additions & 10 deletions polkadot/zombienet-sdk-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ license.workspace = true
publish = false

[dependencies]
env_logger = "0.11.2"
log = "0.4"
subxt = { version = "0.37", features = ["substrate-compat"] }
subxt-signer = { version = "0.37" }
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }
anyhow = "1.0.81"
zombienet-sdk = "0.2.6"
serde = "1.0.197"
serde_json = "1.0.114"
parity-scale-codec = { version = "3.6.9", features = ["derive"] }
env_logger = { workspace = true }
log = { workspace = true }
subxt = { workspace = true, features = ["substrate-compat"] }
subxt-signer = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }
anyhow = { workspace = true }
zombienet-sdk = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
codec = { workspace = true, features = ["derive"] }

[features]
zombie-metadata = []
Expand Down
10 changes: 5 additions & 5 deletions templates/zombienet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ edition.workspace = true
publish = false

[dependencies]
env_logger = "0.11.2"
log = "0.4"
tokio = { version = "1.36.0", features = ["rt-multi-thread"] }
anyhow = "1.0.81"
zombienet-sdk = "0.2.8"
env_logger = { workspace = true }
log = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }
anyhow = { workspace = true }
zombienet-sdk = { workspace = true }

[features]
zombienet = []

0 comments on commit 9036f8b

Please sign in to comment.