Skip to content

Commit 44499cf

Browse files
authored
Add missing workspace members (#3056)
* Add dependencies Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Add missing workspace members Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Fix more Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]>
1 parent 953a07a commit 44499cf

File tree

5 files changed

+116
-0
lines changed

5 files changed

+116
-0
lines changed

cumulus/Cargo.lock

Lines changed: 90 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cumulus/Cargo.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ members = [
77
"bridges/modules/messages",
88
"bridges/modules/parachains",
99
"bridges/modules/relayers",
10+
"bridges/modules/xcm-bridge-hub-router",
11+
"bridges/primitives/chain-asset-hub-kusama",
12+
"bridges/primitives/chain-asset-hub-polkadot",
13+
"bridges/primitives/chain-bridge-hub-cumulus",
14+
"bridges/primitives/chain-bridge-hub-kusama",
15+
"bridges/primitives/chain-bridge-hub-polkadot",
16+
"bridges/primitives/chain-bridge-hub-rococo",
17+
"bridges/primitives/chain-bridge-hub-wococo",
18+
"bridges/primitives/chain-kusama",
19+
"bridges/primitives/chain-polkadot",
20+
"bridges/primitives/chain-rococo",
21+
"bridges/primitives/chain-wococo",
22+
"bridges/primitives/header-chain",
23+
"bridges/primitives/messages",
24+
"bridges/primitives/parachains",
25+
"bridges/primitives/polkadot-core",
26+
"bridges/primitives/relayers",
27+
"bridges/primitives/runtime",
28+
"bridges/primitives/test-utils",
29+
"bridges/primitives/xcm-bridge-hub-router",
1030
"client/cli",
1131
"client/collator",
1232
"client/consensus/aura",

cumulus/bridges/primitives/chain-asset-hub-polkadot/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ scale-info = { version = "2.9.0", default-features = false, features = ["derive"
1212

1313
# Substrate Dependencies
1414
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
15+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
1516

1617
# Bridge Dependencies
1718
bp-xcm-bridge-hub-router = { path = "../xcm-bridge-hub-router", default-features = false }
@@ -23,4 +24,5 @@ std = [
2324
"frame-support/std",
2425
"codec/std",
2526
"scale-info/std",
27+
"sp-runtime/std",
2628
]

cumulus/bridges/primitives/chain-bridge-hub-kusama/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ bp-messages = { path = "../../primitives/messages", default-features = false }
1717

1818
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
1919
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
20+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
2021
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
2122

2223
[features]
@@ -27,5 +28,6 @@ std = [
2728
"bp-runtime/std",
2829
"frame-support/std",
2930
"sp-api/std",
31+
"sp-runtime/std",
3032
"sp-std/std",
3133
]

cumulus/bridges/primitives/chain-bridge-hub-polkadot/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ bp-messages = { path = "../../primitives/messages", default-features = false }
1818

1919
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
2020
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
21+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
2122
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
2223

2324
[features]
@@ -28,5 +29,6 @@ std = [
2829
"bp-messages/std",
2930
"frame-support/std",
3031
"sp-api/std",
32+
"sp-runtime/std",
3133
"sp-std/std",
3234
]

0 commit comments

Comments
 (0)