From 3b965f2069cc57b479a9d89b2d7eb8585d22339b Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Tue, 16 Dec 2025 13:40:46 +0300 Subject: [PATCH] fix: add missing features to pez-revive-dev-runtime --- Cargo.lock | 1 + bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 76866725..f65d1eed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10576,6 +10576,7 @@ dependencies = [ "parity-scale-codec", "pezkuwi-sdk", "pezsp-debug-derive", + "pezsp-runtime", "scale-info", "serde_json", ] diff --git a/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml b/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml index ef2abf6a..015be167 100644 --- a/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml +++ b/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml @@ -20,10 +20,14 @@ pezkuwi-sdk = { workspace = true, features = [ "pezpallet-transaction-payment", "pezpallet-transaction-payment-rpc-runtime-api", "pezkuwi-runtime-common", + "pezsp-api", + "pezsp-keyring", + "pezsp-weights", "runtime", "teyrchains-common", "with-tracing", ] } +pezsp-runtime = { workspace = true } scale-info = { workspace = true } serde_json = { workspace = true, default-features = false, features = [ "alloc", @@ -40,6 +44,7 @@ default = ["std"] std = [ "codec/std", "pezkuwi-sdk/std", + "pezsp-runtime/std", "scale-info/std", "serde_json/std", "pezsp-debug-derive/std",