From 545b8ae818b9060c0cdd5584e84fb76fcb19b56b Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Fri, 19 Dec 2025 16:03:30 +0300 Subject: [PATCH] Use git dependencies for Pezkuwi SDK crates instead of local paths --- Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d975129951..458c7f5845 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -132,16 +132,16 @@ futures-timer = "3" web-time = { version = "1.1", default-features = false } tokio-util = "0.7.12" -# Pezkuwi SDK crates (rebranded from Substrate) - using local paths: -pezsc-executor = { path = "../../bizinikiwi/client/executor", default-features = false } -pezsc-executor-common = { path = "../../bizinikiwi/client/executor/common", default-features = false } -pezsp-crypto-hashing = { path = "../../bizinikiwi/primitives/crypto/hashing", default-features = false } -pezsp-core = { path = "../../bizinikiwi/primitives/core", default-features = false } -pezsp-keyring = { path = "../../bizinikiwi/primitives/keyring", default-features = false } -pezsp-maybe-compressed-blob = { path = "../../bizinikiwi/primitives/maybe-compressed-blob", default-features = false } -pezsp-io = { path = "../../bizinikiwi/primitives/io", default-features = false } -pezsp-state-machine = { path = "../../bizinikiwi/primitives/state-machine", default-features = false } -pezsp-runtime = { path = "../../bizinikiwi/primitives/runtime", default-features = false } +# Pezkuwi SDK crates (rebranded from Substrate) - using git deps: +pezsc-executor = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsc-executor-common = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsp-crypto-hashing = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsp-core = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsp-keyring = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsp-maybe-compressed-blob = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsp-io = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsp-state-machine = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } +pezsp-runtime = { git = "https://github.com/pezkuwichain/pezkuwi-sdk.git", branch = "main", default-features = false } # Pezkuwi-Subxt workspace crates: pezkuwi-subxt = { version = "0.44.0", path = "subxt", default-features = false }