Skip to content

Commit d20eee8

Browse files
committed
polkadot-stable2506
polkadot-stable2506
1 parent f41fef3 commit d20eee8

2 files changed

Lines changed: 72 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,3 @@ Cargo.lock
1111

1212
.DS_Store
1313
.idea
14-
15-
# Intentional not commiting this file to allow this repo to be added as a submodule
16-
/Cargo.toml

Cargo.toml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
2+
[workspace]
3+
4+
members = [
5+
"asset-registry",
6+
"auction",
7+
"authority",
8+
"benchmarking",
9+
"build-script-utils",
10+
"currencies",
11+
"gradually-update",
12+
"nft",
13+
"oracle",
14+
"oracle/runtime-api",
15+
"parameters",
16+
"payments",
17+
"rate-limit",
18+
"rewards",
19+
"tokens",
20+
"tokens/runtime-api",
21+
"traits",
22+
"unknown-tokens",
23+
"utilities",
24+
"vesting",
25+
"xcm-mock-message-queue",
26+
"xcm-support",
27+
"xcm",
28+
"xtokens",
29+
]
30+
31+
resolver = "2"
32+
33+
[profile.dev]
34+
split-debuginfo = "unpacked"
35+
36+
[workspace.dependencies]
37+
log = { version = "0.4.22", default-features = false }
38+
scale-info = { version = "2.11.1", default-features = false, features = ["derive"] }
39+
serde = { version = "1.0.209" }
40+
parity-scale-codec = { version = "3.6.12", default-features = false, features = ["max-encoded-len"] }
41+
42+
cumulus-pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
43+
cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
44+
frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
45+
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
46+
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
47+
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
48+
pallet-elections-phragmen = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
49+
pallet-message-queue = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
50+
pallet-preimage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
51+
pallet-root-testing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
52+
pallet-scheduler = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
53+
pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
54+
pallet-treasury = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
55+
pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
56+
polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
57+
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
58+
polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
59+
sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
60+
sp-application-crypto = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
61+
sp-arithmetic = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
62+
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
63+
sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
64+
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
65+
sp-runtime-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
66+
sp-staking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
67+
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
68+
sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", default-features = false }
69+
xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", package = "staging-xcm", default-features = false }
70+
xcm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", package = "staging-xcm-builder", default-features = false }
71+
xcm-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506", package = "staging-xcm-executor", default-features = false }
72+
xcm-simulator = { git = "https://github.com/paritytech/polkadot-sdk", branch = "stable2506" }

0 commit comments

Comments
 (0)