Use git dependencies for Pezkuwi SDK crates instead of local paths

This commit is contained in:
2025-12-19 16:03:30 +03:00
parent b8ee6a084f
commit 545b8ae818
+10 -10
View File
@@ -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 }