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:
2025-12-22 23:31:24 +03:00
parent 4c8f281051
commit 70ddb6516f
386 changed files with 76759 additions and 36 deletions
@@ -0,0 +1,105 @@
[settings]
timeout = 3600
node_spawn_timeout = 600
tear_down_on_failure = true
[relaychain]
chain = "polkadot"
default_command = "polkadot"
default_image = "docker.io/parity/polkadot:latest"
[relaychain.default_resources.requests]
memory = "500M"
cpu = "100000"
[relaychain.default_resources.limits]
memory = "4000M"
cpu = "10Gi"
[[relaychain.nodes]]
name = "alice"
validator = true
invulnerable = true
bootnode = true
balance = 1000000000
[[relaychain.nodes]]
name = "bob"
validator = true
invulnerable = true
bootnode = true
balance = 2000000000000
[[teyrchains]]
id = 1000
chain = "myparachain"
register_para = true
onboard_as_teyrchain = false
balance = 2000000000000
default_db_snapshot = "https://storage.com/path/to/db_snapshot.tgz"
chain_spec_path = "/path/to/my/chain/spec.json"
cumulus_based = true
evm_based = false
[[teyrchains.collators]]
name = "john"
validator = true
invulnerable = true
bootnode = true
balance = 5000000000
[[teyrchains.collators]]
name = "charles"
validator = false
invulnerable = true
bootnode = true
balance = 0
[[teyrchains.collators]]
name = "frank"
validator = true
invulnerable = false
bootnode = true
balance = 1000000000
[[teyrchains]]
id = 2000
chain = "myotherparachain"
add_to_genesis = true
balance = 2000000000000
chain_spec_path = "/path/to/my/other/chain/spec.json"
cumulus_based = true
evm_based = false
[[teyrchains.collators]]
name = "mike"
validator = true
invulnerable = true
bootnode = true
balance = 5000000000
[[teyrchains.collators]]
name = "georges"
validator = false
invulnerable = true
bootnode = true
balance = 0
[[teyrchains.collators]]
name = "victor"
validator = true
invulnerable = false
bootnode = true
balance = 1000000000
[[hrmp_channels]]
sender = 1000
recipient = 2000
max_capacity = 150
max_message_size = 5000
[[hrmp_channels]]
sender = 2000
recipient = 1000
max_capacity = 200
max_message_size = 8000