Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit ede4d52

Browse files
committed
Update references
1 parent f499617 commit ede4d52

File tree

38 files changed

+839
-839
lines changed

38 files changed

+839
-839
lines changed

Cargo.lock

+235-235
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ edition = "2018"
88
structopt = "0.3.3"
99

1010
# Substrate dependencies
11-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
11+
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
12+
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }

client/collator/Cargo.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ edition = "2018"
66

77
[dependencies]
88
# Substrate dependencies
9-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
10-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
9+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
10+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
11+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
12+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
13+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
1414

1515
# Polkadot dependencies
16-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
17-
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
18-
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
19-
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
16+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
17+
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
18+
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
19+
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
2020

2121
# Cumulus dependencies
2222
cumulus-client-network = { path = "../network" }
@@ -31,15 +31,15 @@ tracing = "0.1.25"
3131

3232
[dev-dependencies]
3333
# Polkadot dependencies
34-
polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "master" }
34+
polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
3535

3636
# Cumulus dependencies
3737
cumulus-test-runtime = { path = "../../test/runtime" }
3838
cumulus-test-client = { path = "../../test/client" }
3939
# Substrate dependencies
4040

41-
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" }
42-
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
41+
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
42+
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
4343

4444
# Other dependencies
4545
async-trait = "0.1.42"

client/consensus/aura/Cargo.toml

+17-17
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@ edition = "2018"
77

88
[dependencies]
99
# Substrate dependencies
10-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
14-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
15-
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
16-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
17-
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
18-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
19-
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
20-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
21-
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
22-
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" }
23-
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
24-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
25-
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
10+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
11+
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
12+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
13+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
14+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
15+
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
16+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
17+
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
18+
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
19+
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
20+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
21+
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
22+
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
23+
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
24+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
25+
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
2626

2727
# Polkadot dependencies
28-
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
28+
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
2929

3030
# Cumulus dependencies
3131
cumulus-client-consensus-common = { path = "../common" }

client/consensus/common/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ edition = "2018"
77

88
[dependencies]
99
# Substrate deps
10-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
14-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
15-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
16-
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
10+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
11+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
12+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
14+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
15+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
16+
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
1717

1818
# Polkadot deps
19-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
19+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
2020

2121
# Other deps
2222
futures = { version = "0.3.8", features = ["compat"] }
@@ -27,7 +27,7 @@ dyn-clone = "1.0.4"
2727

2828
[dev-dependencies]
2929
# Substrate deps
30-
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
30+
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
3131
# Cumulus dependencies
3232
cumulus-test-client = { path = "../../../test/client" }
3333
# Other deps

client/consensus/relay-chain/Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ edition = "2018"
77

88
[dependencies]
99
# Substrate deps
10-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
14-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
15-
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
16-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
17-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
18-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
19-
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" }
10+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
11+
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
12+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
13+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
14+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
15+
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
16+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
17+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
18+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
19+
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
2020

2121
# Polkadot dependencies
22-
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
22+
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
2323

2424
# Cumulus dependencies
2525
cumulus-client-consensus-common = { path = "../common" }

client/network/Cargo.toml

+19-19
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ edition = "2018"
77

88
[dependencies]
99
# Substrate deps
10-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
14-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
15-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
10+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
11+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
12+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
13+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
14+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
15+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
1616

1717
# Polkadot deps
18-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
19-
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
20-
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
21-
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
18+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
19+
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
20+
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
21+
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
2222

2323
# other deps
2424
codec = { package = "parity-scale-codec", version = "2.3.0", features = [ "derive" ] }
@@ -36,14 +36,14 @@ cumulus-test-service = { path = "../../test/service" }
3636
cumulus-primitives-core = { path = "../../primitives/core" }
3737

3838
# Polkadot deps
39-
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
39+
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
4040

4141
# substrate deps
42-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
43-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
44-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
45-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
46-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
47-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
48-
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
49-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
42+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
43+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
44+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
45+
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
46+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
47+
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
48+
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
49+
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }

client/pov-recovery/Cargo.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ edition = "2018"
77

88
[dependencies]
99
# Substrate deps
10-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
14-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
15-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
10+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
11+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
12+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
13+
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
14+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
15+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
1616

1717
# Polkadot deps
18-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
19-
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
20-
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
21-
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
18+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
19+
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
20+
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
21+
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.11" }
2222

2323
# Cumulus deps
2424
cumulus-primitives-core = { path = "../../primitives/core" }
@@ -37,7 +37,7 @@ tokio = { version = "1.10", features = ["macros"] }
3737
cumulus-test-service = { path = "../../test/service" }
3838

3939
# substrate deps
40-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
41-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
42-
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
43-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
40+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
41+
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
42+
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }
43+
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.11" }

0 commit comments

Comments
 (0)