Skip to content

Commit f441a5f

Browse files
committed
Diener workspacify
Signed-off-by: alvicsam <[email protected]>
1 parent 8ba894c commit f441a5f

File tree

422 files changed

+5046
-4600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

422 files changed

+5046
-4600
lines changed

Cargo.toml

Lines changed: 446 additions & 0 deletions
Large diffs are not rendered by default.

cumulus/bridges/bin/runtime-common/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,24 @@ pallet-bridge-relayers = { path = "../../modules/relayers", default-features = f
2929

3030
# Substrate dependencies
3131

32-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
33-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
34-
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
35-
pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
36-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
37-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
38-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
39-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
40-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
41-
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
32+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
33+
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
34+
pallet-transaction-payment = { path = "../../../../substrate/frame/transaction-payment", default-features = false }
35+
pallet-utility = { path = "../../../../substrate/frame/utility", default-features = false }
36+
sp-api = { path = "../../../../substrate/primitives/api", default-features = false }
37+
sp-core = { path = "../../../../substrate/primitives/core", default-features = false }
38+
sp-io = { path = "../../../../substrate/primitives/io", default-features = false }
39+
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
40+
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
41+
sp-trie = { path = "../../../../substrate/primitives/trie", default-features = false }
4242

4343
# Polkadot dependencies
44-
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
45-
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
44+
xcm = { path = "../../../../polkadot/xcm", default-features = false }
45+
xcm-builder = { path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
4646

4747
[dev-dependencies]
4848
bp-test-utils = { path = "../../primitives/test-utils" }
49-
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
49+
pallet-balances = { path = "../../../../substrate/frame/balances" }
5050

5151
[features]
5252
default = ["std"]

cumulus/bridges/modules/grandpa/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ bp-header-chain = { path = "../../primitives/header-chain", default-features = f
2020

2121
# Substrate Dependencies
2222

23-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
24-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
25-
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["serde"] }
26-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["serde"] }
27-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
28-
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
23+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
24+
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
25+
sp-consensus-grandpa = { path = "../../../../substrate/primitives/consensus/grandpa", default-features = false, features = ["serde"] }
26+
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false, features = ["serde"] }
27+
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
28+
sp-trie = { path = "../../../../substrate/primitives/trie", default-features = false }
2929

3030
# Optional Benchmarking Dependencies
3131
bp-test-utils = { path = "../../primitives/test-utils", default-features = false, optional = true }
32-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
32+
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", default-features = false, optional = true }
3333

3434
[dev-dependencies]
35-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
36-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
35+
sp-core = { path = "../../../../substrate/primitives/core" }
36+
sp-io = { path = "../../../../substrate/primitives/io" }
3737

3838
[features]
3939
default = ["std"]

cumulus/bridges/modules/messages/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ bp-runtime = { path = "../../primitives/runtime", default-features = false }
1919

2020
# Substrate Dependencies
2121

22-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
23-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
24-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
25-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
26-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
27-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
22+
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", default-features = false, optional = true }
23+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
24+
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
25+
sp-core = { path = "../../../../substrate/primitives/core", default-features = false }
26+
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
27+
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
2828

2929
[dev-dependencies]
3030
bp-test-utils = { path = "../../primitives/test-utils" }
31-
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
32-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
31+
pallet-balances = { path = "../../../../substrate/frame/balances" }
32+
sp-io = { path = "../../../../substrate/primitives/io" }
3333

3434
[features]
3535
default = ["std"]

cumulus/bridges/modules/parachains/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ pallet-bridge-grandpa = { path = "../grandpa", default-features = false }
2020

2121
# Substrate Dependencies
2222

23-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
24-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
25-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
26-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
27-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
28-
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
23+
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", default-features = false, optional = true }
24+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
25+
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
26+
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
27+
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
28+
sp-trie = { path = "../../../../substrate/primitives/trie", default-features = false }
2929

3030
[dev-dependencies]
3131
bp-header-chain = { path = "../../primitives/header-chain" }
3232
bp-test-utils = { path = "../../primitives/test-utils" }
33-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
34-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
33+
sp-core = { path = "../../../../substrate/primitives/core" }
34+
sp-io = { path = "../../../../substrate/primitives/io" }
3535

3636
[features]
3737
default = ["std"]

cumulus/bridges/modules/relayers/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ pallet-bridge-messages = { path = "../messages", default-features = false }
2020

2121
# Substrate Dependencies
2222

23-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
24-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
25-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
26-
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
27-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
28-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
23+
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", default-features = false, optional = true }
24+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
25+
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
26+
sp-arithmetic = { path = "../../../../substrate/primitives/arithmetic", default-features = false }
27+
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
28+
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
2929

3030
[dev-dependencies]
3131
bp-runtime = { path = "../../primitives/runtime" }
32-
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
33-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
34-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
35-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
32+
pallet-balances = { path = "../../../../substrate/frame/balances" }
33+
sp-core = { path = "../../../../substrate/primitives/core" }
34+
sp-io = { path = "../../../../substrate/primitives/io" }
35+
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
3636

3737
[features]
3838
default = ["std"]

cumulus/bridges/modules/xcm-bridge-hub-router/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ bp-xcm-bridge-hub-router = { path = "../../primitives/xcm-bridge-hub-router", de
1717

1818
# Substrate Dependencies
1919

20-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
21-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
22-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
23-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
24-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
25-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
20+
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking", default-features = false, optional = true }
21+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
22+
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
23+
sp-core = { path = "../../../../substrate/primitives/core", default-features = false }
24+
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
25+
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
2626

2727
# Polkadot Dependencies
2828

29-
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
30-
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
29+
xcm = { path = "../../../../polkadot/xcm", default-features = false }
30+
xcm-builder = { path = "../../../../polkadot/xcm/xcm-builder", default-features = false }
3131

3232
[dev-dependencies]
33-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
34-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" }
33+
sp-io = { path = "../../../../substrate/primitives/io" }
34+
sp-std = { path = "../../../../substrate/primitives/std" }
3535

3636
[features]
3737
default = ["std"]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ codec = { package = "parity-scale-codec", version = "3.1.5", default-features =
1111
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
1212

1313
# Substrate Dependencies
14-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
14+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
1515

1616
# Bridge Dependencies
1717
bp-xcm-bridge-hub-router = { path = "../xcm-bridge-hub-router", default-features = false }

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ codec = { package = "parity-scale-codec", version = "3.1.5", default-features =
1111
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
1212

1313
# Substrate Dependencies
14-
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 }
14+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
15+
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
1616

1717
# Bridge Dependencies
1818
bp-xcm-bridge-hub-router = { path = "../xcm-bridge-hub-router", default-features = false }

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
99
[dependencies]
1010
# Bridge Dependencies
1111

12-
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
13-
bp-messages = { path = "../../primitives/messages", default-features = false }
14-
bp-runtime = { path = "../../primitives/runtime", default-features = false }
12+
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
13+
bp-messages = { path = "../messages", default-features = false }
14+
bp-runtime = { path = "../runtime", default-features = false }
1515

1616
# Substrate Based Dependencies
1717

18-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
19-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
20-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
21-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
18+
frame-system = { path = "../../../../substrate/frame/system", default-features = false }
19+
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
20+
sp-api = { path = "../../../../substrate/primitives/api", default-features = false }
21+
sp-std = { path = "../../../../substrate/primitives/std", default-features = false }
2222

2323
# Polkadot Dependencies
24-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false , branch = "master" }
24+
polkadot-primitives = { path = "../../../../polkadot/primitives", default-features = false }
2525

2626
[features]
2727
default = ["std"]

0 commit comments

Comments
 (0)