mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 16:21:02 +00:00
[Bridges] Move chain definitions to separate folder (#3822)
Related to https://github.com/paritytech/parity-bridges-common/issues/2538 This PR doesn't contain any functional changes. The PR moves specific bridged chain definitions from `bridges/primitives` to `bridges/chains` folder in order to facilitate the migration of the `parity-bridges-repo` into `polkadot-sdk` as discussed in https://hackmd.io/LprWjZ0bQXKpFeveYHIRXw?view Apart from this it also includes some cosmetic changes to some `Cargo.toml` files as a result of running `diener workspacify`.
This commit is contained in:
+12
-12
@@ -10,24 +10,24 @@ resolver = "2"
|
||||
|
||||
members = [
|
||||
"bridges/bin/runtime-common",
|
||||
"bridges/chains/chain-asset-hub-rococo",
|
||||
"bridges/chains/chain-asset-hub-westend",
|
||||
"bridges/chains/chain-bridge-hub-cumulus",
|
||||
"bridges/chains/chain-bridge-hub-kusama",
|
||||
"bridges/chains/chain-bridge-hub-polkadot",
|
||||
"bridges/chains/chain-bridge-hub-rococo",
|
||||
"bridges/chains/chain-bridge-hub-westend",
|
||||
"bridges/chains/chain-kusama",
|
||||
"bridges/chains/chain-polkadot",
|
||||
"bridges/chains/chain-polkadot-bulletin",
|
||||
"bridges/chains/chain-rococo",
|
||||
"bridges/chains/chain-westend",
|
||||
"bridges/modules/grandpa",
|
||||
"bridges/modules/messages",
|
||||
"bridges/modules/parachains",
|
||||
"bridges/modules/relayers",
|
||||
"bridges/modules/xcm-bridge-hub",
|
||||
"bridges/modules/xcm-bridge-hub-router",
|
||||
"bridges/primitives/chain-asset-hub-rococo",
|
||||
"bridges/primitives/chain-asset-hub-westend",
|
||||
"bridges/primitives/chain-bridge-hub-cumulus",
|
||||
"bridges/primitives/chain-bridge-hub-kusama",
|
||||
"bridges/primitives/chain-bridge-hub-polkadot",
|
||||
"bridges/primitives/chain-bridge-hub-rococo",
|
||||
"bridges/primitives/chain-bridge-hub-westend",
|
||||
"bridges/primitives/chain-kusama",
|
||||
"bridges/primitives/chain-polkadot",
|
||||
"bridges/primitives/chain-polkadot-bulletin",
|
||||
"bridges/primitives/chain-rococo",
|
||||
"bridges/primitives/chain-westend",
|
||||
"bridges/primitives/header-chain",
|
||||
"bridges/primitives/messages",
|
||||
"bridges/primitives/parachains",
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ scale-info = { version = "2.10.0", default-features = false, features = ["derive
|
||||
frame-support = { path = "../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Bridge Dependencies
|
||||
bp-xcm-bridge-hub-router = { path = "../xcm-bridge-hub-router", default-features = false }
|
||||
bp-xcm-bridge-hub-router = { path = "../../primitives/xcm-bridge-hub-router", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
+1
-1
@@ -17,7 +17,7 @@ scale-info = { version = "2.10.0", default-features = false, features = ["derive
|
||||
frame-support = { path = "../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Bridge Dependencies
|
||||
bp-xcm-bridge-hub-router = { path = "../xcm-bridge-hub-router", default-features = false }
|
||||
bp-xcm-bridge-hub-router = { path = "../../primitives/xcm-bridge-hub-router", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
+3
-3
@@ -12,9 +12,9 @@ workspace = true
|
||||
[dependencies]
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
||||
bp-messages = { path = "../messages", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
|
||||
bp-messages = { path = "../../primitives/messages", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
+2
-2
@@ -13,8 +13,8 @@ workspace = true
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-bridge-hub-cumulus = { path = "../chain-bridge-hub-cumulus", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-messages = { path = "../messages", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
bp-messages = { path = "../../primitives/messages", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
+2
-2
@@ -14,8 +14,8 @@ workspace = true
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-bridge-hub-cumulus = { path = "../chain-bridge-hub-cumulus", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-messages = { path = "../messages", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
bp-messages = { path = "../../primitives/messages", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
+2
-2
@@ -13,8 +13,8 @@ workspace = true
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-bridge-hub-cumulus = { path = "../chain-bridge-hub-cumulus", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-messages = { path = "../messages", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
bp-messages = { path = "../../primitives/messages", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
+2
-2
@@ -14,8 +14,8 @@ workspace = true
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-bridge-hub-cumulus = { path = "../chain-bridge-hub-cumulus", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-messages = { path = "../messages", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
bp-messages = { path = "../../primitives/messages", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
@@ -13,9 +13,9 @@ workspace = true
|
||||
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-header-chain = { path = "../header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-header-chain = { path = "../../primitives/header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
+4
-4
@@ -15,10 +15,10 @@ scale-info = { version = "2.10.0", default-features = false, features = ["derive
|
||||
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-header-chain = { path = "../header-chain", default-features = false }
|
||||
bp-messages = { path = "../messages", default-features = false }
|
||||
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-header-chain = { path = "../../primitives/header-chain", default-features = false }
|
||||
bp-messages = { path = "../../primitives/messages", default-features = false }
|
||||
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
+3
-3
@@ -13,9 +13,9 @@ workspace = true
|
||||
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-header-chain = { path = "../header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-header-chain = { path = "../../primitives/header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
@@ -13,9 +13,9 @@ workspace = true
|
||||
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-header-chain = { path = "../header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-header-chain = { path = "../../primitives/header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
+3
-3
@@ -13,9 +13,9 @@ workspace = true
|
||||
|
||||
# Bridge Dependencies
|
||||
|
||||
bp-header-chain = { path = "../header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../runtime", default-features = false }
|
||||
bp-header-chain = { path = "../../primitives/header-chain", default-features = false }
|
||||
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
|
||||
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
|
||||
# Substrate Based Dependencies
|
||||
|
||||
@@ -36,7 +36,7 @@ sp-io = { path = "../../../../substrate/primitives/io", default-features = false
|
||||
|
||||
snowbridge-core = { path = "../../primitives/core", default-features = false }
|
||||
snowbridge-ethereum = { path = "../../primitives/ethereum", default-features = false }
|
||||
snowbridge-pallet-ethereum-client-fixtures = { path = "./fixtures", default-features = false, optional = true }
|
||||
snowbridge-pallet-ethereum-client-fixtures = { path = "fixtures", default-features = false, optional = true }
|
||||
primitives = { package = "snowbridge-beacon-primitives", path = "../../primitives/beacon", default-features = false }
|
||||
static_assertions = { version = "1.1.0", default-features = false }
|
||||
bp-runtime = { path = "../../../primitives/runtime", default-features = false }
|
||||
@@ -48,7 +48,7 @@ sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
serde_json = { workspace = true, default-features = true }
|
||||
hex-literal = "0.4.1"
|
||||
pallet-timestamp = { path = "../../../../substrate/frame/timestamp" }
|
||||
snowbridge-pallet-ethereum-client-fixtures = { path = "./fixtures" }
|
||||
snowbridge-pallet-ethereum-client-fixtures = { path = "fixtures" }
|
||||
sp-io = { path = "../../../../substrate/primitives/io" }
|
||||
serde = { workspace = true, default-features = true }
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ snowbridge-core = { path = "../../primitives/core", default-features = false }
|
||||
snowbridge-ethereum = { path = "../../primitives/ethereum", default-features = false }
|
||||
snowbridge-router-primitives = { path = "../../primitives/router", default-features = false }
|
||||
snowbridge-beacon-primitives = { path = "../../primitives/beacon", default-features = false }
|
||||
snowbridge-pallet-inbound-queue-fixtures = { path = "./fixtures", default-features = false, optional = true }
|
||||
snowbridge-pallet-inbound-queue-fixtures = { path = "fixtures", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking" }
|
||||
|
||||
@@ -41,7 +41,7 @@ substrate-prometheus-endpoint = { path = "../../../../substrate/utils/prometheus
|
||||
cumulus-client-consensus-common = { path = "../common" }
|
||||
cumulus-relay-chain-interface = { path = "../../relay-chain-interface" }
|
||||
cumulus-client-consensus-proposer = { path = "../proposer" }
|
||||
cumulus-client-parachain-inherent = { path = "../../../client/parachain-inherent" }
|
||||
cumulus-client-parachain-inherent = { path = "../../parachain-inherent" }
|
||||
cumulus-primitives-aura = { path = "../../../primitives/aura" }
|
||||
cumulus-primitives-core = { path = "../../../primitives/core" }
|
||||
cumulus-client-collator = { path = "../../collator" }
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ sp-core = { path = "../../../../../../../../substrate/primitives/core", default-
|
||||
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
asset-hub-rococo-runtime = { path = "../../../../../../runtimes/assets/asset-hub-rococo" }
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ sp-core = { path = "../../../../../../../../substrate/primitives/core", default-
|
||||
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
asset-hub-westend-runtime = { path = "../../../../../../runtimes/assets/asset-hub-westend" }
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ sp-core = { path = "../../../../../../../../substrate/primitives/core", default-
|
||||
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
bridge-hub-rococo-runtime = { path = "../../../../../../runtimes/bridge-hubs/bridge-hub-rococo" }
|
||||
bridge-hub-common = { path = "../../../../../../runtimes/bridge-hubs/common", default-features = false }
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ sp-core = { path = "../../../../../../../../substrate/primitives/core", default-
|
||||
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
bridge-hub-westend-runtime = { path = "../../../../../../runtimes/bridge-hubs/bridge-hub-westend" }
|
||||
bridge-hub-common = { path = "../../../../../../runtimes/bridge-hubs/common", default-features = false }
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@ sp-core = { path = "../../../../../../../../substrate/primitives/core", default-
|
||||
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
collectives-westend-runtime = { path = "../../../../../../runtimes/collectives/collectives-westend" }
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ sp-core = { path = "../../../../../../../../substrate/primitives/core", default-
|
||||
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
people-rococo-runtime = { path = "../../../../../../runtimes/people/people-rococo" }
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ sp-core = { path = "../../../../../../../../substrate/primitives/core", default-
|
||||
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
people-westend-runtime = { path = "../../../../../../runtimes/people/people-westend" }
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ frame-support = { path = "../../../../../../../../substrate/frame/support", defa
|
||||
xcm = { package = "staging-xcm", path = "../../../../../../../../polkadot/xcm", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../../common" }
|
||||
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
|
||||
penpal-runtime = { path = "../../../../../../runtimes/testing/penpal" }
|
||||
|
||||
@@ -25,5 +25,5 @@ rococo-runtime-constants = { path = "../../../../../../../polkadot/runtime/rococ
|
||||
rococo-runtime = { path = "../../../../../../../polkadot/runtime/rococo" }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
||||
|
||||
@@ -27,5 +27,5 @@ westend-runtime-constants = { path = "../../../../../../../polkadot/runtime/west
|
||||
westend-runtime = { path = "../../../../../../../polkadot/runtime/westend" }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@ rococo-runtime = { path = "../../../../../../../polkadot/runtime/rococo" }
|
||||
|
||||
# Cumulus
|
||||
asset-test-utils = { path = "../../../../../runtimes/assets/test-utils" }
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
cumulus-pallet-parachain-system = { path = "../../../../../../pallets/parachain-system", default-features = false }
|
||||
testnet-parachains-constants = { path = "../../../../../runtimes/constants", features = ["rococo"] }
|
||||
asset-hub-rococo-runtime = { path = "../../../../../runtimes/assets/asset-hub-rococo" }
|
||||
|
||||
+3
-3
@@ -31,12 +31,12 @@ pallet-xcm = { path = "../../../../../../../polkadot/xcm/pallet-xcm", default-fe
|
||||
westend-runtime = { path = "../../../../../../../polkadot/runtime/westend" }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
testnet-parachains-constants = { path = "../../../../../runtimes/constants", features = ["westend"] }
|
||||
penpal-runtime = { path = "../../../../../runtimes/testing/penpal" }
|
||||
asset-hub-westend-runtime = { path = "../../../../../runtimes/assets/asset-hub-westend" }
|
||||
asset-test-utils = { path = "../../../../../runtimes/assets/test-utils" }
|
||||
cumulus-pallet-xcmp-queue = { default-features = false, path = "../../../../../../pallets/xcmp-queue" }
|
||||
cumulus-pallet-parachain-system = { default-features = false, path = "../../../../../../pallets/parachain-system" }
|
||||
cumulus-pallet-xcmp-queue = { path = "../../../../../../pallets/xcmp-queue", default-features = false }
|
||||
cumulus-pallet-parachain-system = { path = "../../../../../../pallets/parachain-system", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
||||
westend-system-emulated-network = { path = "../../../networks/westend-system" }
|
||||
|
||||
+2
-2
@@ -34,10 +34,10 @@ pallet-bridge-messages = { path = "../../../../../../../bridges/modules/messages
|
||||
bp-messages = { path = "../../../../../../../bridges/primitives/messages", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
testnet-parachains-constants = { path = "../../../../../runtimes/constants", features = ["rococo"] }
|
||||
cumulus-pallet-xcmp-queue = { path = "../../../../../../pallets/xcmp-queue", default-features = false }
|
||||
bridge-hub-rococo-runtime = { path = "../../../../../../parachains/runtimes/bridge-hubs/bridge-hub-rococo", default-features = false }
|
||||
bridge-hub-rococo-runtime = { path = "../../../../../runtimes/bridge-hubs/bridge-hub-rococo", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
||||
rococo-westend-system-emulated-network = { path = "../../../networks/rococo-westend-system" }
|
||||
rococo-system-emulated-network = { path = "../../../networks/rococo-system" }
|
||||
|
||||
+2
-2
@@ -30,8 +30,8 @@ pallet-bridge-messages = { path = "../../../../../../../bridges/modules/messages
|
||||
bp-messages = { path = "../../../../../../../bridges/primitives/messages", default-features = false }
|
||||
|
||||
# Cumulus
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
cumulus-pallet-xcmp-queue = { path = "../../../../../../pallets/xcmp-queue", default-features = false }
|
||||
bridge-hub-westend-runtime = { path = "../../../../../../parachains/runtimes/bridge-hubs/bridge-hub-westend", default-features = false }
|
||||
bridge-hub-westend-runtime = { path = "../../../../../runtimes/bridge-hubs/bridge-hub-westend", default-features = false }
|
||||
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
||||
rococo-westend-system-emulated-network = { path = "../../../networks/rococo-westend-system" }
|
||||
|
||||
@@ -26,7 +26,7 @@ polkadot-runtime-common = { path = "../../../../../../../polkadot/runtime/common
|
||||
|
||||
# Cumulus
|
||||
asset-test-utils = { path = "../../../../../runtimes/assets/test-utils" }
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
people-rococo-runtime = { path = "../../../../../runtimes/people/people-rococo" }
|
||||
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
||||
rococo-system-emulated-network = { path = "../../../networks/rococo-system" }
|
||||
|
||||
+1
-1
@@ -26,7 +26,7 @@ polkadot-runtime-common = { path = "../../../../../../../polkadot/runtime/common
|
||||
|
||||
# Cumulus
|
||||
asset-test-utils = { path = "../../../../../runtimes/assets/test-utils" }
|
||||
parachains-common = { path = "../../../../../../parachains/common" }
|
||||
parachains-common = { path = "../../../../../common" }
|
||||
people-westend-runtime = { path = "../../../../../runtimes/people/people-westend" }
|
||||
emulated-integration-tests-common = { path = "../../../common", default-features = false }
|
||||
westend-system-emulated-network = { path = "../../../networks/westend-system" }
|
||||
|
||||
@@ -13,7 +13,7 @@ workspace = true
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
|
||||
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", optional = true, default-features = false }
|
||||
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
|
||||
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
|
||||
|
||||
|
||||
@@ -86,10 +86,10 @@ assets-common = { path = "../common", default-features = false }
|
||||
|
||||
# Bridges
|
||||
pallet-xcm-bridge-hub-router = { path = "../../../../../bridges/modules/xcm-bridge-hub-router", default-features = false }
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/primitives/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/primitives/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/primitives/chain-bridge-hub-westend", default-features = false }
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/chains/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/chains/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/chains/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/chains/chain-bridge-hub-westend", default-features = false }
|
||||
snowbridge-router-primitives = { path = "../../../../../bridges/snowbridge/primitives/router", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -84,10 +84,10 @@ assets-common = { path = "../common", default-features = false }
|
||||
|
||||
# Bridges
|
||||
pallet-xcm-bridge-hub-router = { path = "../../../../../bridges/modules/xcm-bridge-hub-router", default-features = false }
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/primitives/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/primitives/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/primitives/chain-bridge-hub-westend", default-features = false }
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/chains/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/chains/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/chains/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/chains/chain-bridge-hub-westend", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.4.1"
|
||||
|
||||
@@ -85,20 +85,20 @@ parachains-common = { path = "../../../common", default-features = false }
|
||||
testnet-parachains-constants = { path = "../../constants", default-features = false, features = ["rococo"] }
|
||||
|
||||
# Bridges
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/primitives/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/primitives/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-polkadot = { path = "../../../../../bridges/primitives/chain-bridge-hub-polkadot", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/primitives/chain-bridge-hub-westend", default-features = false }
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/chains/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/chains/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-polkadot = { path = "../../../../../bridges/chains/chain-bridge-hub-polkadot", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/chains/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/chains/chain-bridge-hub-westend", default-features = false }
|
||||
bp-header-chain = { path = "../../../../../bridges/primitives/header-chain", default-features = false }
|
||||
bp-messages = { path = "../../../../../bridges/primitives/messages", default-features = false }
|
||||
bp-parachains = { path = "../../../../../bridges/primitives/parachains", default-features = false }
|
||||
bp-polkadot-bulletin = { path = "../../../../../bridges/primitives/chain-polkadot-bulletin", default-features = false }
|
||||
bp-polkadot-bulletin = { path = "../../../../../bridges/chains/chain-polkadot-bulletin", default-features = false }
|
||||
bp-polkadot-core = { path = "../../../../../bridges/primitives/polkadot-core", default-features = false }
|
||||
bp-relayers = { path = "../../../../../bridges/primitives/relayers", default-features = false }
|
||||
bp-runtime = { path = "../../../../../bridges/primitives/runtime", default-features = false }
|
||||
bp-rococo = { path = "../../../../../bridges/primitives/chain-rococo", default-features = false }
|
||||
bp-westend = { path = "../../../../../bridges/primitives/chain-westend", default-features = false }
|
||||
bp-rococo = { path = "../../../../../bridges/chains/chain-rococo", default-features = false }
|
||||
bp-westend = { path = "../../../../../bridges/chains/chain-westend", default-features = false }
|
||||
pallet-bridge-grandpa = { path = "../../../../../bridges/modules/grandpa", default-features = false }
|
||||
pallet-bridge-messages = { path = "../../../../../bridges/modules/messages", default-features = false }
|
||||
pallet-bridge-parachains = { path = "../../../../../bridges/modules/parachains", default-features = false }
|
||||
|
||||
@@ -77,25 +77,25 @@ parachains-common = { path = "../../../common", default-features = false }
|
||||
testnet-parachains-constants = { path = "../../constants", default-features = false, features = ["westend"] }
|
||||
|
||||
# Bridges
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/primitives/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/primitives/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/primitives/chain-bridge-hub-westend", default-features = false }
|
||||
bp-asset-hub-rococo = { path = "../../../../../bridges/chains/chain-asset-hub-rococo", default-features = false }
|
||||
bp-asset-hub-westend = { path = "../../../../../bridges/chains/chain-asset-hub-westend", default-features = false }
|
||||
bp-bridge-hub-rococo = { path = "../../../../../bridges/chains/chain-bridge-hub-rococo", default-features = false }
|
||||
bp-bridge-hub-westend = { path = "../../../../../bridges/chains/chain-bridge-hub-westend", default-features = false }
|
||||
bp-header-chain = { path = "../../../../../bridges/primitives/header-chain", default-features = false }
|
||||
bp-messages = { path = "../../../../../bridges/primitives/messages", default-features = false }
|
||||
bp-parachains = { path = "../../../../../bridges/primitives/parachains", default-features = false }
|
||||
bp-polkadot-core = { path = "../../../../../bridges/primitives/polkadot-core", default-features = false }
|
||||
bp-relayers = { path = "../../../../../bridges/primitives/relayers", default-features = false }
|
||||
bp-runtime = { path = "../../../../../bridges/primitives/runtime", default-features = false }
|
||||
bp-rococo = { path = "../../../../../bridges/primitives/chain-rococo", default-features = false }
|
||||
bp-westend = { path = "../../../../../bridges/primitives/chain-westend", default-features = false }
|
||||
bp-rococo = { path = "../../../../../bridges/chains/chain-rococo", default-features = false }
|
||||
bp-westend = { path = "../../../../../bridges/chains/chain-westend", default-features = false }
|
||||
pallet-bridge-grandpa = { path = "../../../../../bridges/modules/grandpa", default-features = false }
|
||||
pallet-bridge-messages = { path = "../../../../../bridges/modules/messages", default-features = false }
|
||||
pallet-bridge-parachains = { path = "../../../../../bridges/modules/parachains", default-features = false }
|
||||
pallet-bridge-relayers = { path = "../../../../../bridges/modules/relayers", default-features = false }
|
||||
pallet-xcm-bridge-hub = { path = "../../../../../bridges/modules/xcm-bridge-hub", default-features = false }
|
||||
bridge-runtime-common = { path = "../../../../../bridges/bin/runtime-common", default-features = false }
|
||||
bridge-hub-common = { path = "../../bridge-hubs/common", default-features = false }
|
||||
bridge-hub-common = { path = "../common", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
static_assertions = "1.1"
|
||||
|
||||
@@ -20,8 +20,8 @@ frame-system = { path = "../../../substrate/frame/system", default-features = fa
|
||||
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false }
|
||||
sp-std = { path = "../../../substrate/primitives/std", default-features = false }
|
||||
|
||||
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
||||
cumulus-primitives-proof-size-hostfunction = { path = "../../primitives/proof-size-hostfunction", default-features = false }
|
||||
cumulus-primitives-core = { path = "../core", default-features = false }
|
||||
cumulus-primitives-proof-size-hostfunction = { path = "../proof-size-hostfunction", default-features = false }
|
||||
docify = "0.2.7"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
+1
-1
@@ -46,7 +46,7 @@ assert_cmd = "2.0.4"
|
||||
nix = { version = "0.26.1", features = ["signal"] }
|
||||
tempfile = "3.2.0"
|
||||
tokio = "1.24.2"
|
||||
substrate-rpc-client = { path = "../substrate/utils/frame/rpc/client/" }
|
||||
substrate-rpc-client = { path = "../substrate/utils/frame/rpc/client" }
|
||||
polkadot-core-primitives = { path = "core-primitives" }
|
||||
|
||||
[build-dependencies]
|
||||
|
||||
@@ -50,7 +50,7 @@ hex-literal = "0.4.1"
|
||||
polkadot-node-core-pvf-common = { path = "common", features = ["test-utils"] }
|
||||
# For benches and integration tests, depend on ourselves with the test-utils
|
||||
# feature.
|
||||
polkadot-node-core-pvf = { path = ".", features = ["test-utils"] }
|
||||
polkadot-node-core-pvf = { path = "", features = ["test-utils"] }
|
||||
rococo-runtime = { path = "../../../runtime/rococo" }
|
||||
|
||||
adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" }
|
||||
|
||||
@@ -62,7 +62,7 @@ sp-transaction-pool = { path = "../../../substrate/primitives/transaction-pool",
|
||||
sp-version = { path = "../../../substrate/primitives/version", default-features = false, features = [
|
||||
"serde",
|
||||
] }
|
||||
sp-genesis-builder = { default-features = false, path = "../../../substrate/primitives/genesis-builder" }
|
||||
sp-genesis-builder = { path = "../../../substrate/primitives/genesis-builder", default-features = false }
|
||||
|
||||
# RPC related
|
||||
frame-system-rpc-runtime-api = { path = "../../../substrate/frame/system/rpc/runtime-api", default-features = false }
|
||||
|
||||
Reference in New Issue
Block a user