feat: Vendor pezkuwi-subxt and pezkuwi-zombienet-sdk into monorepo
- Add pezkuwi-subxt crates to vendor/pezkuwi-subxt - Add pezkuwi-zombienet-sdk crates to vendor/pezkuwi-zombienet-sdk - Convert git dependencies to path dependencies - Add vendor crates to workspace members - Remove test/example crates from vendor (not needed for SDK) - Fix feature propagation issues detected by zepter - Fix workspace inheritance for internal dependencies - All 606 crates now in workspace - All 6919 internal dependency links verified correct - No git dependencies remaining
This commit is contained in:
@@ -52,6 +52,10 @@ bn = { workspace = true }
|
||||
pezframe-benchmarking = { optional = true, workspace = true }
|
||||
pezframe-support = { workspace = true }
|
||||
pezframe-system = { workspace = true }
|
||||
pezkuwi-subxt-signer = { workspace = true, optional = true, features = [
|
||||
"subxt",
|
||||
"unstable-eth",
|
||||
] }
|
||||
pezpallet-revive-fixtures = { workspace = true, optional = true }
|
||||
pezpallet-revive-proc-macro = { workspace = true }
|
||||
pezpallet-revive-uapi = { workspace = true, features = [
|
||||
@@ -69,10 +73,6 @@ pezsp-io = { workspace = true }
|
||||
pezsp-runtime = { workspace = true }
|
||||
pezsp-version = { workspace = true }
|
||||
ripemd = { workspace = true }
|
||||
pezkuwi-subxt-signer = { workspace = true, optional = true, features = [
|
||||
"unstable-eth",
|
||||
"subxt",
|
||||
] }
|
||||
|
||||
[dev-dependencies]
|
||||
alloy-consensus = { workspace = true, default-features = true }
|
||||
@@ -113,6 +113,7 @@ std = [
|
||||
"pezframe-benchmarking?/std",
|
||||
"pezframe-support/std",
|
||||
"pezframe-system/std",
|
||||
"pezkuwi-subxt-signer",
|
||||
"pezpallet-proxy/std",
|
||||
"pezpallet-revive-fixtures?/std",
|
||||
"pezpallet-timestamp/std",
|
||||
@@ -139,7 +140,7 @@ std = [
|
||||
"secp256k1/std",
|
||||
"serde/std",
|
||||
"serde_json/std",
|
||||
"pezkuwi-subxt-signer",
|
||||
"pezkuwi-subxt-signer?/std"
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"k256",
|
||||
|
||||
@@ -43,8 +43,13 @@ pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
std = ["pez-revive-dev-runtime/std", "pezkuwi-sdk/std"]
|
||||
std = [
|
||||
"pez-revive-dev-runtime/std",
|
||||
"pezkuwi-sdk/std",
|
||||
"pezsp-runtime/std"
|
||||
]
|
||||
runtime-benchmarks = [
|
||||
"pez-revive-dev-runtime/runtime-benchmarks",
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks"
|
||||
]
|
||||
|
||||
@@ -49,4 +49,7 @@ std = [
|
||||
"scale-info/std",
|
||||
"serde_json/std",
|
||||
]
|
||||
runtime-benchmarks = ["pezkuwi-sdk/runtime-benchmarks"]
|
||||
runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks"
|
||||
]
|
||||
|
||||
@@ -31,6 +31,7 @@ log = { workspace = true }
|
||||
pezkuwi-subxt = { workspace = true, default-features = true, features = [
|
||||
"reconnecting-rpc-client",
|
||||
] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["unstable-eth"] }
|
||||
pezpallet-revive = { workspace = true, default-features = true }
|
||||
pezsc-cli = { workspace = true, default-features = true }
|
||||
pezsc-rpc = { workspace = true, default-features = true }
|
||||
@@ -51,7 +52,6 @@ serde = { workspace = true, default-features = true, features = [
|
||||
] }
|
||||
serde_json = { workspace = true }
|
||||
sqlx = { workspace = true, features = ["macros", "runtime-tokio", "sqlite"] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["unstable-eth"] }
|
||||
thiserror = { workspace = true }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user