Skip to content

Commit 9ace627

Browse files
committed
Move Polkadot SDK dependencies from GH to crates.io
1 parent b45be7d commit 9ace627

1 file changed

Lines changed: 30 additions & 30 deletions

File tree

Cargo.toml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -33,40 +33,40 @@ tokio = { version = "1.40.0" }
3333
zstd = { version = "0.13.2", default-features = false }
3434

3535
# Polkadot SDK
36-
frame-remote-externalities = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
37-
frame-try-runtime = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
38-
frame-support = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
39-
frame-system = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
36+
frame-remote-externalities = { version = "0.54.0" }
37+
frame-try-runtime = { version = "0.49.0" }
38+
frame-support = { version = "43.0.0" }
39+
frame-system = { version = "43.0.0" }
4040

41-
sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
42-
sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
43-
sc-service = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
41+
sc-cli = { version = "0.55.0" }
42+
sc-executor = { version = "0.45.0" }
43+
sc-service = { version = "0.54.0" }
4444

45-
sp-api = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
46-
sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
47-
sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
48-
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
49-
sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
50-
sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
51-
sp-io = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
52-
sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
53-
sp-rpc = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
54-
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
55-
sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
56-
sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
57-
sp-std = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
58-
sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
59-
sp-transaction-storage-proof = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
60-
sp-version = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
61-
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
45+
sp-api = { version = "39.0.0" }
46+
sp-consensus-aura = { version = "0.45.0" }
47+
sp-consensus-babe = { version = "0.45.0" }
48+
sp-core = { version = "38.1.0" }
49+
sp-externalities = { version = "0.30.0" }
50+
sp-inherents = { version = "39.0.0" }
51+
sp-io = { version = "43.0.0" }
52+
sp-keystore = { version = "0.44.1" }
53+
sp-rpc = { version = "36.0.1" }
54+
sp-runtime = { version = "44.0.0" }
55+
sp-state-machine = { version = "0.48.0" }
56+
sp-storage = { version = "22.0.0" }
57+
sp-std = { version = "14.0.0" }
58+
sp-timestamp = { version = "39.0.0" }
59+
sp-transaction-storage-proof = { version = "39.0.0" }
60+
sp-version = { version = "42.0.0" }
61+
sp-weights = { version = "33.1.0" }
6262

63-
substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
64-
substrate-rpc-client = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
63+
substrate-cli-test-utils = { git = "https://github.com/paritytech/polkadot-sdk", rev = "09c511c3dc97961c8c2bdf7836d3ae02dd672771" }
64+
substrate-rpc-client = { version = "0.52.0" }
6565

66-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
67-
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
68-
cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
69-
cumulus-client-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", rev = "8279d1046cca51a317dec15df5a9b29240545163" }
66+
polkadot-primitives = { version = "21.0.0" }
67+
cumulus-primitives-parachain-inherent = { version = "0.21.0" }
68+
cumulus-primitives-core = { version = "0.21.0" }
69+
cumulus-client-parachain-inherent = { version = "0.20.0" }
7070

7171
# Local
7272
try-runtime-core = { path = "core" }

0 commit comments

Comments
 (0)