fix(ci): enable jsonrpsee feature for pezkuwi-subxt in zombienet-orchestrator

The workspace defines pezkuwi-subxt with default-features = false, which
excludes the jsonrpsee feature. The zombienet-orchestrator uses
OnlineClient::from_url and RpcClient::from_url which are gated behind
the jsonrpsee feature, causing a compilation failure.
This commit is contained in:
2026-02-25 01:54:46 +03:00
parent 5cf4a65673
commit da8cf65c10
@@ -23,7 +23,7 @@ hex = { workspace = true }
libp2p = { workspace = true }
libsecp256k1 = { workspace = true }
multiaddr = { workspace = true }
pezkuwi-subxt = { workspace = true, features = ["native"] }
pezkuwi-subxt = { workspace = true, features = ["jsonrpsee", "native"] }
pezkuwi-subxt-signer = { workspace = true }
pezsc-chain-spec = { workspace = true }
pezsp-core = { workspace = true }