fix(ci): enable native feature for pezkuwi-subxt in zombienet crates

The workspace-level pezkuwi-subxt dependency uses default-features = false,
which disables the native feature. The orchestrator and sdk crates inherited
this without explicitly enabling native, causing compile_error in the
prepare-pezcumulus-zombienet-artifacts CI job.
This commit is contained in:
2026-02-23 21:45:46 +03:00
parent f55a0ed4e5
commit 4620819c0c
2 changed files with 2 additions and 2 deletions
@@ -23,7 +23,7 @@ hex = { workspace = true }
libp2p = { workspace = true }
libsecp256k1 = { workspace = true }
multiaddr = { workspace = true }
pezkuwi-subxt = { workspace = true }
pezkuwi-subxt = { workspace = true, features = ["native"] }
pezkuwi-subxt-signer = { workspace = true }
pezsc-chain-spec = { workspace = true }
pezsp-core = { workspace = true }
+1 -1
View File
@@ -16,7 +16,7 @@ keywords = ["blockchain", "pezkuwi", "sdk", "zombienet"]
async-trait = { workspace = true }
futures = { workspace = true }
lazy_static = { workspace = true }
pezkuwi-subxt = { workspace = true }
pezkuwi-subxt = { workspace = true, features = ["native"] }
pezkuwi-subxt-signer = { workspace = true, features = ["subxt"] }
tokio = { workspace = true }