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

Commit fa116cf

Browse files
committed
Update branches and make it compile
1 parent 7d473c1 commit fa116cf

File tree

42 files changed

+1142
-1151
lines changed

Some content is hidden

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

42 files changed

+1142
-1151
lines changed

Cargo.lock

+578-593
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 = "polkadot-v0.9.9" }
12-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
11+
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
12+
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }

client/collator/Cargo.toml

+16-16
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ edition = "2018"
66

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

1616
# Polkadot dependencies
17-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
18-
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
19-
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
20-
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
17+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
18+
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
19+
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
20+
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
2121

2222
# Cumulus dependencies
2323
cumulus-client-network = { path = "../network" }
@@ -32,18 +32,18 @@ tracing = "0.1.25"
3232

3333
[dev-dependencies]
3434
# Polkadot dependencies
35-
polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
35+
polkadot-node-subsystem-test-helpers = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
3636

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

4141
# Substrate dependencies
42-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
43-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
44-
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
45-
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
46-
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
42+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
43+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
44+
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
45+
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
46+
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
4747

4848
# Other dependencies
4949
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 = "polkadot-v0.9.9" }
11-
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
12-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
13-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
14-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
15-
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
16-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
17-
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
18-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
19-
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
20-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
21-
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
22-
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
23-
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
24-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
25-
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
10+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
11+
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
12+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
13+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
14+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
15+
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
16+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
17+
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
18+
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
19+
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
20+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
21+
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
22+
sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
23+
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
24+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
25+
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
2626

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

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

client/consensus/common/Cargo.toml

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

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

2222
# Polkadot deps
23-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
24-
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
23+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
24+
polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
2525

2626
# Other deps
2727
futures = { version = "0.3.8", features = ["compat"] }
@@ -32,10 +32,10 @@ dyn-clone = "1.0.4"
3232

3333
[dev-dependencies]
3434
# Substrate deps
35-
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
36-
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
37-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
38-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
35+
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
36+
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
37+
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
38+
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
3939

4040
# Cumulus dependencies
4141
cumulus-test-runtime = { path = "../../../test/runtime" }
@@ -44,7 +44,7 @@ cumulus-test-service = { path = "../../../test/service" }
4444
cumulus-primitives-core = { path = "../../../primitives/core" }
4545

4646
# Polkadot deps
47-
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
47+
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
4848

4949
# Other deps
5050
tokio = { version = "0.2.21", features = ["macros"] }

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 = "polkadot-v0.9.9" }
11-
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
12-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
13-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
14-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
15-
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
16-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
17-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
18-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
19-
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9" }
10+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
11+
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
12+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
13+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
14+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
15+
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
16+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
17+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
18+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
19+
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.10" }
2020

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

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

client/network/Cargo.toml

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

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

1717
# Polkadot deps
18-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
19-
polkadot-statement-table = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
20-
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
21-
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
22-
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
18+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
19+
polkadot-statement-table = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
20+
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
21+
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
22+
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
2323

2424
# other deps
2525
codec = { package = "parity-scale-codec", version = "2.0.0", features = [ "derive" ] }
@@ -37,14 +37,14 @@ cumulus-test-service = { path = "../../test/service" }
3737
cumulus-primitives-core = { path = "../../primitives/core" }
3838

3939
# Polkadot deps
40-
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.9" }
40+
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.10" }
4141

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

0 commit comments

Comments
 (0)