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:
@@ -56,10 +56,10 @@ codec = { workspace = true, default-features = true }
|
||||
futures = { workspace = true }
|
||||
jsonrpsee = { features = ["server"], workspace = true }
|
||||
log = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["unstable-eth"] }
|
||||
rand = { workspace = true, default-features = true }
|
||||
serde = { features = ["derive"], workspace = true, default-features = true }
|
||||
serde_json = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["unstable-eth"] }
|
||||
|
||||
# The Pezkuwi-SDK:
|
||||
pezkuwi-sdk = { features = [
|
||||
@@ -225,4 +225,5 @@ try-runtime = [
|
||||
"bizinikiwi-cli-test-utils/try-runtime",
|
||||
"pez-kitchensink-runtime/try-runtime",
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime"
|
||||
]
|
||||
|
||||
@@ -36,9 +36,9 @@ primitive-types = { features = [
|
||||
"scale-info",
|
||||
], workspace = true }
|
||||
|
||||
pezkuwi-sdk = { features = ["runtime-full", "tuples-96"], workspace = true }
|
||||
pezframe-try-runtime = { optional = true, workspace = true }
|
||||
pezsp-runtime = { path = "../../../primitives/runtime", default-features = false }
|
||||
pezkuwi-sdk = { features = ["runtime-full", "tuples-96"], workspace = true }
|
||||
pezsp-runtime = { workspace = true, default-features = false }
|
||||
|
||||
# shared code between runtime and node
|
||||
pez-node-primitives = { workspace = true }
|
||||
@@ -77,6 +77,8 @@ runtime-benchmarks = [
|
||||
"pezpallet-example-tasks/runtime-benchmarks",
|
||||
"rand",
|
||||
"rand_pcg",
|
||||
"pezframe-try-runtime?/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks"
|
||||
]
|
||||
try-runtime = [
|
||||
"pezframe-try-runtime",
|
||||
@@ -84,6 +86,7 @@ try-runtime = [
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezpallet-example-mbm/try-runtime",
|
||||
"pezpallet-example-tasks/try-runtime",
|
||||
"pezsp-runtime/try-runtime"
|
||||
]
|
||||
experimental = ["pezpallet-example-tasks/experimental"]
|
||||
metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"]
|
||||
|
||||
@@ -30,9 +30,9 @@ thiserror = { workspace = true }
|
||||
[dev-dependencies]
|
||||
pezcumulus-primitives-proof-size-hostfunction = { workspace = true, default-features = true }
|
||||
pezcumulus-test-runtime = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt = { workspace = true, features = ["native"] }
|
||||
pezsp-io = { workspace = true, default-features = true }
|
||||
pezsp-version = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt = { workspace = true, features = ["native"] }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = [
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
|
||||
@@ -34,6 +34,7 @@ std = [
|
||||
"pezsp-debug-derive/std",
|
||||
"scale-info/std",
|
||||
"serde/std",
|
||||
"schemars?/std"
|
||||
]
|
||||
# By default some types have documentation, `full-metadata-docs` allows to add documentation to
|
||||
# more types in the metadata.
|
||||
|
||||
@@ -36,6 +36,8 @@ pezframe-benchmarking = { workspace = true, default-features = true }
|
||||
pezframe-support = { workspace = true, default-features = true }
|
||||
pezframe-system = { workspace = true, default-features = true }
|
||||
pezkuwi-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt = { workspace = true, features = ["native"] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["sr25519", "subxt", "unstable-eth"] }
|
||||
pezkuwi-teyrchain-primitives = { workspace = true, default-features = true }
|
||||
pezsc-block-builder = { workspace = true, default-features = true }
|
||||
pezsc-chain-spec = { workspace = true }
|
||||
@@ -71,8 +73,6 @@ rand = { features = ["small_rng"], workspace = true, default-features = true }
|
||||
rand_pcg = { workspace = true }
|
||||
serde = { workspace = true, default-features = true }
|
||||
serde_json = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt = { workspace = true, features = ["native"] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["unstable-eth", "sr25519", "subxt"] }
|
||||
thiserror = { workspace = true }
|
||||
thousands = { workspace = true }
|
||||
|
||||
|
||||
@@ -30,13 +30,13 @@ jsonrpsee = { workspace = true, features = [
|
||||
"jsonrpsee-types",
|
||||
] }
|
||||
parking_lot = { workspace = true, default-features = true }
|
||||
rand = { workspace = true, default-features = true }
|
||||
serde = { workspace = true, default-features = true }
|
||||
serde_json = { workspace = true, features = ["arbitrary_precision"] }
|
||||
pezkuwi-subxt = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-core = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-rpcs = { workspace = true, default-features = true }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["unstable-eth", "sr25519", "subxt"] }
|
||||
pezkuwi-subxt-signer = { workspace = true, features = ["sr25519", "subxt", "unstable-eth"] }
|
||||
rand = { workspace = true, default-features = true }
|
||||
serde = { workspace = true, default-features = true }
|
||||
serde_json = { workspace = true, features = ["arbitrary_precision"] }
|
||||
termplot = "0.1.1"
|
||||
thiserror = { workspace = true }
|
||||
time = { version = "0.3.36", features = [
|
||||
|
||||
Reference in New Issue
Block a user