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

Commit 3e191db

Browse files
committed
[REVERT AFTER BURN-IN] set substrate rev
hack to help cargo to resolve single substrate version
1 parent 6093b43 commit 3e191db

File tree

78 files changed

+984
-984
lines changed

Some content is hidden

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

78 files changed

+984
-984
lines changed

Cargo.lock

Lines changed: 174 additions & 174 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ assert_cmd = "2.0.4"
2222
nix = "0.24.1"
2323
tempfile = "3.2.0"
2424
tokio = "1.19.2"
25-
remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" }
25+
remote-externalities = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
2626
polkadot-core-primitives = { path = "core-primitives" }
2727

2828
[workspace]

cli/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ polkadot-client = { path = "../node/client", optional = true }
2525
polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true }
2626
polkadot-performance-test = { path = "../node/test/performance-test", optional = true }
2727

28-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
29-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
30-
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
31-
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
32-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
33-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
28+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
29+
sp-keyring = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
30+
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
31+
try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
32+
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
33+
sc-service = { git = "https://github.com/paritytech/substrate", optional = true , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3434
polkadot-node-metrics = { path = "../node/metrics" }
35-
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
36-
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" }
35+
sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
36+
sc-sysinfo = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3737

3838
# this crate is used only to enable `trie-memory-tracker` feature
3939
# see https://github.com/paritytech/substrate/pull/6745
40-
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
40+
sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
4141

4242
[build-dependencies]
43-
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
43+
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
4444

4545
[features]
4646
default = ["wasmtime", "db", "cli", "hostperfcheck", "full-node", "trie-memory-tracker", "polkadot-native"]

core-primitives/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ authors = ["Parity Technologies <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
8-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
9-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
10-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
8+
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
9+
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
10+
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
1111
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
1212
parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] }
1313
parity-util-mem = { version = "0.11.0", default-features = false, optional = true }

erasure-coding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" }
99
polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" }
1010
novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" }
1111
parity-scale-codec = { version = "3.1.5", default-features = false, features = ["std", "derive"] }
12-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
12+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
13+
sp-trie = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
1414
thiserror = "1.0.31"

node/client/Cargo.toml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,37 @@ authors = ["Parity Technologies <[email protected]>"]
55
edition = "2021"
66

77
[dependencies]
8-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
9-
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
10-
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
8+
frame-benchmarking = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
9+
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
10+
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
11+
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
12+
frame-system = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
13+
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
1414

15-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
16-
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
17-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
18-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
19-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
20-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
21-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
22-
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
23-
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
24-
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
25-
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
26-
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
27-
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
28-
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
29-
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
30-
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
31-
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
15+
sp-consensus = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
16+
sp-storage = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
17+
sp-runtime = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
18+
sp-blockchain = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
19+
sp-api = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
20+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
21+
sp-keyring = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
22+
sp-inherents = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
23+
sp-timestamp = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
24+
sp-session = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
25+
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
26+
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
27+
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
28+
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
29+
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
30+
sp-block-builder = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
31+
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3232

33-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
34-
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
35-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
36-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
33+
sc-consensus = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
34+
sc-executor = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
35+
sc-client-api = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
36+
sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3737

38-
beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" }
38+
beefy-primitives = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3939

4040
# Polkadot Runtimes
4141
polkadot-runtime = { path = "../../runtime/polkadot", optional = true }

node/collation-generation/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" }
1212
polkadot-node-subsystem = { path = "../subsystem" }
1313
polkadot-node-subsystem-util = { path = "../subsystem-util" }
1414
polkadot-primitives = { path = "../../primitives" }
15-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
16-
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
15+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
16+
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
1717
thiserror = "1.0.31"
1818
parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] }
1919

node/core/approval-voting/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ polkadot-primitives = { path = "../../../primitives" }
2424
polkadot-node-primitives = { path = "../../primitives" }
2525
polkadot-node-jaeger = { path = "../../jaeger" }
2626

27-
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
28-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
29-
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
30-
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] }
31-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
27+
sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
28+
sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
29+
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
30+
sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
31+
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3232

3333
[dev-dependencies]
3434
async-trait = "0.1.57"
3535
parking_lot = "0.12.0"
3636
rand_core = "0.5.1" # should match schnorrkel
37-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
38-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
39-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
40-
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
37+
sp-keyring = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
38+
sp-keystore = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
39+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
40+
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
4141
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
4242
assert_matches = "1.4.0"
4343
kvdb-memorydb = "0.11.0"

node/core/av-store/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ env_logger = "0.9.0"
2626
assert_matches = "1.4.0"
2727
kvdb-memorydb = "0.11.0"
2828

29-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
29+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3030
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
3131
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
32-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
32+
sp-keyring = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3333
parking_lot = "0.12.0"
3434
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }

node/core/backing/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
futures = "0.3.21"
9-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
9+
sp-keystore = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
1010
polkadot-primitives = { path = "../../../primitives" }
1111
polkadot-node-primitives = { path = "../../primitives" }
1212
polkadot-node-subsystem = {path = "../../subsystem" }
@@ -19,11 +19,11 @@ thiserror = "1.0.31"
1919
fatality = "0.0.6"
2020

2121
[dev-dependencies]
22-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
23-
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
24-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
25-
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
26-
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
22+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
23+
sp-application-crypto = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
24+
sp-keyring = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
25+
sc-keystore = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
26+
sp-tracing = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
2727
futures = { version = "0.3.21", features = ["thread-pool"] }
2828
assert_matches = "1.4.0"
2929
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }

node/core/bitfield-signing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gum = { package = "tracing-gum", path = "../../gum" }
1010
polkadot-primitives = { path = "../../../primitives" }
1111
polkadot-node-subsystem = { path = "../../subsystem" }
1212
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
13-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
13+
sp-keystore = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
1414
wasm-timer = "0.2.5"
1515
thiserror = "1.0.31"
1616

node/core/candidate-validation/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ async-trait = "0.1.57"
99
futures = "0.3.21"
1010
gum = { package = "tracing-gum", path = "../../gum" }
1111

12-
sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" }
12+
sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
1313
parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] }
1414

1515
polkadot-primitives = { path = "../../../primitives" }
@@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
2222
polkadot-node-core-pvf = { path = "../pvf" }
2323

2424
[dev-dependencies]
25-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
25+
sp-keyring = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
2626
futures = { version = "0.3.21", features = ["thread-pool"] }
2727
assert_matches = "1.4.0"
2828
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
29-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
29+
sp-core = { git = "https://github.com/paritytech/substrate", rev = "952030cfa6f11be6aef938e5359064c4cf6b30a9" }
3030
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }

0 commit comments

Comments
 (0)