Skip to content
Snippets Groups Projects
Unverified Commit 2ab3f03f authored by Clara van Staden's avatar Clara van Staden Committed by GitHub
Browse files

Removes Snowbridge parachain directory (#3186)

Removes the `bridges/snowbridge/parachain` directory and moves
everything up to under `snowbridge` directly. We are cleaning up our
local dev env after merging our crates into the polkadot-sdk.

---------

Co-authored-by: claravanstaden <Cats 4 life!>
parent 700d5f85
Branches
No related merge requests found
Pipeline #440996 passed with stages
in 41 minutes and 4 seconds
Showing
with 32 additions and 32 deletions
...@@ -36,21 +36,21 @@ members = [ ...@@ -36,21 +36,21 @@ members = [
"bridges/primitives/test-utils", "bridges/primitives/test-utils",
"bridges/primitives/xcm-bridge-hub", "bridges/primitives/xcm-bridge-hub",
"bridges/primitives/xcm-bridge-hub-router", "bridges/primitives/xcm-bridge-hub-router",
"bridges/snowbridge/parachain/pallets/ethereum-client", "bridges/snowbridge/pallets/ethereum-client",
"bridges/snowbridge/parachain/pallets/ethereum-client/fixtures", "bridges/snowbridge/pallets/ethereum-client/fixtures",
"bridges/snowbridge/parachain/pallets/inbound-queue", "bridges/snowbridge/pallets/inbound-queue",
"bridges/snowbridge/parachain/pallets/inbound-queue/fixtures", "bridges/snowbridge/pallets/inbound-queue/fixtures",
"bridges/snowbridge/parachain/pallets/outbound-queue", "bridges/snowbridge/pallets/outbound-queue",
"bridges/snowbridge/parachain/pallets/outbound-queue/merkle-tree", "bridges/snowbridge/pallets/outbound-queue/merkle-tree",
"bridges/snowbridge/parachain/pallets/outbound-queue/runtime-api", "bridges/snowbridge/pallets/outbound-queue/runtime-api",
"bridges/snowbridge/parachain/pallets/system", "bridges/snowbridge/pallets/system",
"bridges/snowbridge/parachain/pallets/system/runtime-api", "bridges/snowbridge/pallets/system/runtime-api",
"bridges/snowbridge/parachain/primitives/beacon", "bridges/snowbridge/primitives/beacon",
"bridges/snowbridge/parachain/primitives/core", "bridges/snowbridge/primitives/core",
"bridges/snowbridge/parachain/primitives/ethereum", "bridges/snowbridge/primitives/ethereum",
"bridges/snowbridge/parachain/primitives/router", "bridges/snowbridge/primitives/router",
"bridges/snowbridge/parachain/runtime/runtime-common", "bridges/snowbridge/runtime/runtime-common",
"bridges/snowbridge/parachain/runtime/test-common", "bridges/snowbridge/runtime/test-common",
"cumulus/client/cli", "cumulus/client/cli",
"cumulus/client/collator", "cumulus/client/collator",
"cumulus/client/consensus/aura", "cumulus/client/consensus/aura",
......
...@@ -26,30 +26,30 @@ rlp = { version = "0.5.2", default-features = false } ...@@ -26,30 +26,30 @@ rlp = { version = "0.5.2", default-features = false }
hex-literal = { version = "0.4.1", optional = true } hex-literal = { version = "0.4.1", optional = true }
log = { version = "0.4.20", default-features = false } log = { version = "0.4.20", default-features = false }
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true } frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", default-features = false, optional = true }
frame-support = { path = "../../../../../substrate/frame/support", default-features = false } frame-support = { path = "../../../../substrate/frame/support", default-features = false }
frame-system = { path = "../../../../../substrate/frame/system", default-features = false } frame-system = { path = "../../../../substrate/frame/system", default-features = false }
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false } sp-core = { path = "../../../../substrate/primitives/core", default-features = false }
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false } sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false } sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
sp-io = { path = "../../../../../substrate/primitives/io", default-features = false, optional = true } sp-io = { path = "../../../../substrate/primitives/io", default-features = false, optional = true }
snowbridge-core = { path = "../../primitives/core", default-features = false } snowbridge-core = { path = "../../primitives/core", default-features = false }
snowbridge-ethereum = { path = "../../primitives/ethereum", 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 } primitives = { package = "snowbridge-beacon-primitives", path = "../../primitives/beacon", default-features = false }
static_assertions = { version = "1.1.0", default-features = false } static_assertions = { version = "1.1.0", default-features = false }
bp-runtime = { path = "../../../../primitives/runtime", default-features = false } bp-runtime = { path = "../../../primitives/runtime", default-features = false }
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false, optional = true } pallet-timestamp = { path = "../../../../substrate/frame/timestamp", default-features = false, optional = true }
[dev-dependencies] [dev-dependencies]
rand = "0.8.5" rand = "0.8.5"
sp-keyring = { path = "../../../../../substrate/primitives/keyring" } sp-keyring = { path = "../../../../substrate/primitives/keyring" }
serde_json = "1.0.111" serde_json = "1.0.111"
hex-literal = "0.4.1" hex-literal = "0.4.1"
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp" } 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" } sp-io = { path = "../../../../substrate/primitives/io" }
serde = "1.0.195" serde = "1.0.195"
[features] [features]
......
...@@ -16,11 +16,11 @@ targets = ["x86_64-unknown-linux-gnu"] ...@@ -16,11 +16,11 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies] [dependencies]
hex-literal = { version = "0.4.1" } hex-literal = { version = "0.4.1" }
sp-core = { path = "../../../../../../substrate/primitives/core", default-features = false } sp-core = { path = "../../../../../substrate/primitives/core", default-features = false }
sp-std = { path = "../../../../../../substrate/primitives/std", default-features = false } sp-std = { path = "../../../../../substrate/primitives/std", default-features = false }
frame-benchmarking = { path = "../../../../../../substrate/frame/benchmarking", default-features = false, optional = true } frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true }
frame-support = { path = "../../../../../../substrate/frame/support", default-features = false } frame-support = { path = "../../../../../substrate/frame/support", default-features = false }
frame-system = { path = "../../../../../../substrate/frame/system", default-features = false } frame-system = { path = "../../../../../substrate/frame/system", default-features = false }
snowbridge-core = { path = "../../../primitives/core", default-features = false } snowbridge-core = { path = "../../../primitives/core", default-features = false }
snowbridge-beacon-primitives = { path = "../../../primitives/beacon", default-features = false } snowbridge-beacon-primitives = { path = "../../../primitives/beacon", default-features = false }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment