From c5daee4739d2bd0714cd848366044568ad09da23 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 14:22:13 +0200 Subject: [PATCH 1/8] Re-add tests Signed-off-by: Oliver Tale-Yazdi --- tests/benchmark_block.rs | 95 ++++++++++++++++++++++++++++++++++++ tests/benchmark_extrinsic.rs | 57 ++++++++++++++++++++++ tests/benchmark_overhead.rs | 67 +++++++++++++++++++++++++ 3 files changed, 219 insertions(+) create mode 100644 tests/benchmark_block.rs create mode 100644 tests/benchmark_extrinsic.rs create mode 100644 tests/benchmark_overhead.rs diff --git a/tests/benchmark_block.rs b/tests/benchmark_block.rs new file mode 100644 index 000000000000..0994fae675a4 --- /dev/null +++ b/tests/benchmark_block.rs @@ -0,0 +1,95 @@ +// Copyright 2022 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +// Unix only since it uses signals. +#![cfg(unix)] + +use assert_cmd::cargo::cargo_bin; +use nix::{ + sys::signal::{kill, Signal::SIGINT}, + unistd::Pid, +}; +use std::{ + path::Path, + process::{self, Command}, + result::Result, + time::Duration, +}; +use tempfile::tempdir; + +pub mod common; + +static RUNTIMES: [&'static str; 3] = ["polkadot", "kusama", "westend"]; + +/// `benchmark block` works for all dev runtimes using the wasm executor. +#[tokio::test] +async fn benchmark_block_works() { + for runtime in RUNTIMES { + let tmp_dir = tempdir().expect("could not create a temp dir"); + let base_path = tmp_dir.path(); + let runtime = format!("{}-dev", runtime); + + // Build a chain with a single block. + build_chain(&runtime, base_path).await.unwrap(); + // Benchmark the that one. + benchmark_block(&runtime, base_path, 1).unwrap(); + } +} + +/// Builds a chain with one block for the given runtime and base path. +async fn build_chain(runtime: &str, base_path: &Path) -> Result<(), String> { + let mut cmd = Command::new(cargo_bin("polkadot")) + .stdout(process::Stdio::piped()) + .stderr(process::Stdio::piped()) + .args(["--chain", &runtime, "--force-authoring", "--alice"]) + .arg("-d") + .arg(base_path) + .arg("--port") + .arg("33034") + .spawn() + .unwrap(); + + let (ws_url, _) = common::find_ws_url_from_output(cmd.stderr.take().unwrap()); + + // Wait for the chain to produce one block. + let ok = common::wait_n_finalized_blocks(1, Duration::from_secs(60), &ws_url).await; + // Send SIGINT to node. + kill(Pid::from_raw(cmd.id().try_into().unwrap()), SIGINT).unwrap(); + // Wait for the node to handle it and exit. + assert!(common::wait_for(&mut cmd, 30).map(|x| x.success()).unwrap_or_default()); + + ok.map_err(|e| format!("Node did not build the chain: {:?}", e)) +} + +/// Benchmarks the given block with the wasm executor. +fn benchmark_block(runtime: &str, base_path: &Path, block: u32) -> Result<(), String> { + // Invoke `benchmark block` with all options to make sure that they are valid. + let status = Command::new(cargo_bin("polkadot")) + .args(["benchmark", "block", "--chain", &runtime]) + .arg("-d") + .arg(base_path) + .args(["--from", &block.to_string(), "--to", &block.to_string()]) + .args(["--repeat", "1"]) + .args(["--execution", "wasm", "--wasm-execution", "compiled"]) + .status() + .map_err(|e| format!("command failed: {:?}", e))?; + + if !status.success() { + return Err("Command failed".into()) + } + + Ok(()) +} diff --git a/tests/benchmark_extrinsic.rs b/tests/benchmark_extrinsic.rs new file mode 100644 index 000000000000..416364ba1970 --- /dev/null +++ b/tests/benchmark_extrinsic.rs @@ -0,0 +1,57 @@ +// Copyright 2022 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +use assert_cmd::cargo::cargo_bin; +use std::{process::Command, result::Result}; + +static RUNTIMES: [&'static str; 4] = ["polkadot", "kusama", "westend", "rococo"]; +static EXTRINSICS: [(&'static str, &'static str); 2] = + [("system", "remark"), ("balances", "transfer_keep_alive")]; + +/// `benchmark extrinsic` works for all dev runtimes and some extrinsics. +#[test] +fn benchmark_extrinsic_works() { + for runtime in RUNTIMES { + for (pallet, extrinsic) in EXTRINSICS { + let runtime = format!("{}-dev", runtime); + assert!(benchmark_extrinsic(&runtime, pallet, extrinsic).is_ok()); + } + } +} + +/// `benchmark extrinsic` rejects all non-dev runtimes. +#[test] +fn benchmark_extrinsic_rejects_non_dev_runtimes() { + for runtime in RUNTIMES { + assert!(benchmark_extrinsic(runtime, "system", "remark").is_err()); + } +} + +fn benchmark_extrinsic(runtime: &str, pallet: &str, extrinsic: &str) -> Result<(), String> { + let status = Command::new(cargo_bin("polkadot")) + .args(["benchmark", "extrinsic", "--chain", &runtime]) + .args(&["--pallet", pallet, "--extrinsic", extrinsic]) + // Run with low repeats for faster execution. + .args(["--repeat=1", "--warmup=1", "--max-ext-per-block=1"]) + .status() + .map_err(|e| format!("command failed: {:?}", e))?; + + if !status.success() { + return Err("Command failed".into()) + } + + Ok(()) +} diff --git a/tests/benchmark_overhead.rs b/tests/benchmark_overhead.rs new file mode 100644 index 000000000000..29a1de67e2c1 --- /dev/null +++ b/tests/benchmark_overhead.rs @@ -0,0 +1,67 @@ +// Copyright 2022 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +use assert_cmd::cargo::cargo_bin; +use std::{process::Command, result::Result}; +use tempfile::tempdir; + +static RUNTIMES: [&'static str; 3] = ["polkadot", "kusama", "westend"]; + +/// `benchmark overhead` works for all dev runtimes. +#[test] +fn benchmark_overhead_works() { + for runtime in RUNTIMES { + let runtime = format!("{}-dev", runtime); + assert!(benchmark_overhead(runtime).is_ok()); + } +} + +/// `benchmark overhead` rejects all non-dev runtimes. +#[test] +fn benchmark_overhead_rejects_non_dev_runtimes() { + for runtime in RUNTIMES { + assert!(benchmark_overhead(runtime.into()).is_err()); + } +} + +fn benchmark_overhead(runtime: String) -> Result<(), String> { + let tmp_dir = tempdir().expect("could not create a temp dir"); + let base_path = tmp_dir.path(); + + // Invoke `benchmark overhead` with all options to make sure that they are valid. + let status = Command::new(cargo_bin("polkadot")) + .args(["benchmark", "overhead", "--chain", &runtime]) + .arg("-d") + .arg(base_path) + .arg("--weight-path") + .arg(base_path) + .args(["--warmup", "5", "--repeat", "5"]) + .args(["--add", "100", "--mul", "1.2", "--metric", "p75"]) + // Only put 5 extrinsics into the block otherwise it takes forever to build it + // especially for a non-release builds. + .args(["--max-ext-per-block", "5"]) + .status() + .map_err(|e| format!("command failed: {:?}", e))?; + + if !status.success() { + return Err("Command failed".into()) + } + + // Weight files have been created. + assert!(base_path.join("block_weights.rs").exists()); + assert!(base_path.join("extrinsic_weights.rs").exists()); + Ok(()) +} From d5384c5b603e1f8b7d14871ee57d2661e61bdb75 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 14:22:28 +0200 Subject: [PATCH 2/8] Test with release profile Signed-off-by: Oliver Tale-Yazdi --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a46f3b5915e8..3dfa23f5e811 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -221,7 +221,7 @@ test-linux-stable: # but still want to have debug assertions. RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" script: - - time cargo test --workspace --profile testnet --verbose --locked --features=runtime-benchmarks,runtime-metrics + - time cargo test --workspace --profile release --verbose --locked --features=runtime-benchmarks,runtime-metrics From 706b2e568d18c30d522642261d0ec3444e84fc82 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 18:52:07 +0200 Subject: [PATCH 3/8] Re-add tests Signed-off-by: Oliver Tale-Yazdi --- tests/benchmark_block.rs | 5 ++--- tests/benchmark_extrinsic.rs | 1 + tests/benchmark_overhead.rs | 2 +- tests/common.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/benchmark_block.rs b/tests/benchmark_block.rs index 0994fae675a4..924c5d722e21 100644 --- a/tests/benchmark_block.rs +++ b/tests/benchmark_block.rs @@ -32,7 +32,7 @@ use tempfile::tempdir; pub mod common; -static RUNTIMES: [&'static str; 3] = ["polkadot", "kusama", "westend"]; +static RUNTIMES: [&'static str; 4] = ["polkadot", "kusama", "westend", "rococo"]; /// `benchmark block` works for all dev runtimes using the wasm executor. #[tokio::test] @@ -57,8 +57,7 @@ async fn build_chain(runtime: &str, base_path: &Path) -> Result<(), String> { .args(["--chain", &runtime, "--force-authoring", "--alice"]) .arg("-d") .arg(base_path) - .arg("--port") - .arg("33034") + .arg("--no-hardware-benchmarks") .spawn() .unwrap(); diff --git a/tests/benchmark_extrinsic.rs b/tests/benchmark_extrinsic.rs index 416364ba1970..c112a8c023f8 100644 --- a/tests/benchmark_extrinsic.rs +++ b/tests/benchmark_extrinsic.rs @@ -18,6 +18,7 @@ use assert_cmd::cargo::cargo_bin; use std::{process::Command, result::Result}; static RUNTIMES: [&'static str; 4] = ["polkadot", "kusama", "westend", "rococo"]; + static EXTRINSICS: [(&'static str, &'static str); 2] = [("system", "remark"), ("balances", "transfer_keep_alive")]; diff --git a/tests/benchmark_overhead.rs b/tests/benchmark_overhead.rs index 29a1de67e2c1..a3b4ed1160ea 100644 --- a/tests/benchmark_overhead.rs +++ b/tests/benchmark_overhead.rs @@ -18,7 +18,7 @@ use assert_cmd::cargo::cargo_bin; use std::{process::Command, result::Result}; use tempfile::tempdir; -static RUNTIMES: [&'static str; 3] = ["polkadot", "kusama", "westend"]; +static RUNTIMES: [&'static str; 4] = ["polkadot", "kusama", "westend", "rococo"]; /// `benchmark overhead` works for all dev runtimes. #[test] diff --git a/tests/common.rs b/tests/common.rs index 6c6450f6db68..0a25b0334848 100644 --- a/tests/common.rs +++ b/tests/common.rs @@ -91,6 +91,6 @@ pub fn find_ws_url_from_output(read: impl Read + Send) -> (String, String) { Some(format!("ws://{}", sock_addr)) }) - .expect("We should get a WebSocket address"); + .expect(&format!("Could not find WebSocket address in process output:\n{}", &data)); (ws_url, data) } From 9e035759c780c2dfaf431456c8d0ff1a78e68d64 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 18:52:34 +0200 Subject: [PATCH 4/8] Test with diener Signed-off-by: Oliver Tale-Yazdi --- Cargo.toml | 2 +- cli/Cargo.toml | 20 +-- core-primitives/Cargo.toml | 6 +- erasure-coding/Cargo.toml | 4 +- node/client/Cargo.toml | 56 ++++---- node/collation-generation/Cargo.toml | 4 +- node/core/approval-voting/Cargo.toml | 18 +-- node/core/av-store/Cargo.toml | 4 +- node/core/backing/Cargo.toml | 12 +- node/core/bitfield-signing/Cargo.toml | 2 +- node/core/candidate-validation/Cargo.toml | 6 +- node/core/chain-api/Cargo.toml | 8 +- node/core/chain-selection/Cargo.toml | 2 +- node/core/dispute-coordinator/Cargo.toml | 8 +- node/core/parachains-inherent/Cargo.toml | 6 +- node/core/provisioner/Cargo.toml | 4 +- node/core/pvf-checker/Cargo.toml | 12 +- node/core/pvf/Cargo.toml | 18 +-- node/core/runtime-api/Cargo.toml | 10 +- node/jaeger/Cargo.toml | 4 +- node/malus/Cargo.toml | 6 +- node/metrics/Cargo.toml | 16 +-- node/network/approval-distribution/Cargo.toml | 4 +- .../availability-distribution/Cargo.toml | 12 +- node/network/availability-recovery/Cargo.toml | 10 +- node/network/bitfield-distribution/Cargo.toml | 8 +- node/network/bridge/Cargo.toml | 8 +- node/network/collator-protocol/Cargo.toml | 12 +- node/network/dispute-distribution/Cargo.toml | 12 +- node/network/gossip-support/Cargo.toml | 16 +-- node/network/protocol/Cargo.toml | 4 +- .../network/statement-distribution/Cargo.toml | 20 +-- node/overseer/Cargo.toml | 8 +- node/primitives/Cargo.toml | 12 +- node/service/Cargo.toml | 94 ++++++------ node/subsystem-test-helpers/Cargo.toml | 10 +- node/subsystem-types/Cargo.toml | 4 +- node/subsystem-util/Cargo.toml | 6 +- node/test/client/Cargo.toml | 28 ++-- node/test/service/Cargo.toml | 62 ++++---- parachain/Cargo.toml | 8 +- parachain/test-parachains/Cargo.toml | 2 +- parachain/test-parachains/adder/Cargo.toml | 6 +- .../test-parachains/adder/collator/Cargo.toml | 12 +- parachain/test-parachains/halt/Cargo.toml | 2 +- parachain/test-parachains/undying/Cargo.toml | 6 +- .../undying/collator/Cargo.toml | 12 +- primitives/Cargo.toml | 30 ++-- primitives/test-helpers/Cargo.toml | 6 +- rpc/Cargo.toml | 46 +++--- runtime/common/Cargo.toml | 60 ++++---- runtime/common/slot_range_helper/Cargo.toml | 4 +- runtime/kusama/Cargo.toml | 136 +++++++++--------- runtime/kusama/constants/Cargo.toml | 4 +- runtime/metrics/Cargo.toml | 4 +- runtime/parachains/Cargo.toml | 52 +++---- runtime/polkadot/Cargo.toml | 124 ++++++++-------- runtime/polkadot/constants/Cargo.toml | 4 +- runtime/rococo/Cargo.toml | 92 ++++++------ runtime/rococo/constants/Cargo.toml | 4 +- runtime/test-runtime/Cargo.toml | 78 +++++----- runtime/test-runtime/constants/Cargo.toml | 4 +- runtime/westend/Cargo.toml | 128 ++++++++--------- runtime/westend/constants/Cargo.toml | 4 +- statement-table/Cargo.toml | 2 +- utils/generate-bags/Cargo.toml | 4 +- utils/remote-ext-tests/bags-list/Cargo.toml | 8 +- utils/staking-miner/Cargo.toml | 28 ++-- xcm/Cargo.toml | 2 +- xcm/pallet-xcm-benchmarks/Cargo.toml | 20 +-- xcm/pallet-xcm/Cargo.toml | 14 +- xcm/xcm-builder/Cargo.toml | 18 +-- xcm/xcm-executor/Cargo.toml | 14 +- xcm/xcm-executor/integration-tests/Cargo.toml | 14 +- xcm/xcm-simulator/Cargo.toml | 6 +- xcm/xcm-simulator/example/Cargo.toml | 14 +- xcm/xcm-simulator/fuzzer/Cargo.toml | 14 +- 77 files changed, 772 insertions(+), 772 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0e0b168420c3..ff67ab9710a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.24.1" tempfile = "3.2.0" tokio = "1.18.2" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 68c297f7eeda..6071739f644c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -25,22 +25,22 @@ polkadot-client = { path = "../node/client", optional = true } polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } +sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native"] diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index 88a08158b742..aa1c14a08de4 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 620f1c3f9531..2e226a93b75c 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" } polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" } novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["std", "derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } thiserror = "1.0.31" diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index 19b93e193fe7..5bb460fb82ea 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,37 +5,37 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # Polkadot Runtimes polkadot-runtime = { path = "../../runtime/polkadot", optional = true } diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index ed3ea7e28fd4..dd663fb1a606 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } thiserror = "1.0.31" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index 646817a5aa4e..88ec2b0278d2 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -24,19 +24,19 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [dev-dependencies] parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index 7398910bd4e4..2487e9b1b36c 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -26,9 +26,9 @@ env_logger = "0.9.0" assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } parking_lot = "0.12.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index e8e6695da821..4051329d18ea 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] futures = "0.3.21" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } @@ -19,11 +19,11 @@ thiserror = "1.0.31" fatality = "0.0.6" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index 89d3d01c74b4..8a325de4a36c 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -10,7 +10,7 @@ gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } wasm-timer = "0.2.5" thiserror = "1.0.31" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index c60837adbb7f..5596c68b587d 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1.53" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } polkadot-primitives = { path = "../../../primitives" } @@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-core-pvf = { path = "../pvf" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index c88268c1aa87..a4b84c7add0d 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" [dependencies] futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] futures = { version = "0.3.21", features = ["thread-pool"] } @@ -20,4 +20,4 @@ maplit = "1.0.2" parity-scale-codec = "3.1.5" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index 764d34b772a2..7a422b9bd04c 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -19,7 +19,7 @@ parity-scale-codec = "3.1.5" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } parking_lot = "0.12.0" assert_matches = "1" kvdb-memorydb = "0.11.0" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 75b425aa5ad3..1ddf09a8a740 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -18,15 +18,15 @@ polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] kvdb-memorydb = "0.11.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } assert_matches = "1.4.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } futures-timer = "3.0.2" diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index 82a8b5d6fd5c..38973c28f53c 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -12,6 +12,6 @@ thiserror = "1.0.31" async-trait = "0.1.53" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 0edaa1d302fa..529a3a7789e9 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -18,8 +18,8 @@ rand = "0.8.5" fatality = "0.0.6" [dev-dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index 25022d1ad570..3265ffde9431 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -15,14 +15,14 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-overseer = { path = "../../overseer" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"} test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures-timer = "3.0.2" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index b12d77f34e94..56a23f5da0c7 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -25,15 +25,15 @@ parity-scale-codec = { version = "3.1.5", default-features = false, features = [ polkadot-parachain = { path = "../../../parachain" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util"} -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 3af58ab5d2a0..4b46aac27564 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -10,17 +10,17 @@ gum = { package = "tracing-gum", path = "../../gum" } memory-lru = "0.1.0" parity-util-mem = { version = "0.11.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = { version = "0.3.21", features = ["thread-pool"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index 5aee83997cfa..4bfc4c4a0bea 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -12,8 +12,8 @@ lazy_static = "1.4" parking_lot = "0.12.0" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } thiserror = "1.0.31" log = "0.4.17" parity-scale-codec = { version = "3.1.5", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index 0e47f235b61a..484d1476bbfa 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -27,8 +27,8 @@ parity-util-mem = { version = "0.11.0", default-features = false, features = ["j color-eyre = { version = "0.6.1", default-features = false } assert_matches = "1.5" async-trait = "0.1.53" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } clap = { version = "3.1", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" @@ -40,5 +40,5 @@ default = [] [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = { version = "0.3.21", features = ["thread-pool"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index 343ec9689298..ef87303ef2fc 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -13,11 +13,11 @@ gum = { package = "tracing-gum", path = "../gum" } metered = { package = "prioritized-metered-channel", path = "../metered-channel" , "version" = "0.2.0" } # Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`. -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } codec = { package = "parity-scale-codec", version = "3.0.0" } primitives = { package = "polkadot-primitives", path = "../../primitives/" } bs58 = { version = "0.4.0", features = ["alloc"] } @@ -30,10 +30,10 @@ tempfile = "3.2.0" hyper = { version = "0.14.19", default-features = false, features = ["http1", "tcp"] } tokio = "1.18.2" polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]} -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } prometheus-parse = {version = "0.2.2"} [features] diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index f00e79681a01..c840fe93ff8c 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -16,8 +16,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index 8fba00d7017a..063bb3aa4960 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,8 +14,8 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } thiserror = "1.0.31" rand = "0.8.5" derive_more = "0.99.17" @@ -24,10 +24,10 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures-timer = "3.0.2" assert_matches = "1.4.0" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index e1448d8317c2..387c832532c2 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -19,7 +19,7 @@ polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-network-protocol = { path = "../../network/protocol" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] assert_matches = "1.4.0" @@ -27,10 +27,10 @@ env_logger = "0.9.0" futures-timer = "3.0.2" log = "0.4.17" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index f6f32ee159a0..e4657a20d763 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -16,10 +16,10 @@ rand = "0.8" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } maplit = "1.0.2" log = "0.4.17" env_logger = "0.9.0" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index 40ae9cac7fe2..7d76ddd18430 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -11,8 +11,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-node-network-protocol = { path = "../protocol" } @@ -25,7 +25,7 @@ thiserror = "1" [dev-dependencies] assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures-timer = "3" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index a8645bd8517d..1e9140cdd3a9 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -10,9 +10,9 @@ futures = "0.3.21" futures-timer = "3" gum = { package = "tracing-gum", path = "../../gum" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-network-protocol = { path = "../../network/protocol" } @@ -27,9 +27,9 @@ log = "0.4.17" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } parity-scale-codec = { version = "3.1.5", features = ["std"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index 9f89001a89a5..1215e38baf0f 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -15,9 +15,9 @@ polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } thiserror = "1.0.31" fatality = "0.0.6" lru = "0.7.7" @@ -25,9 +25,9 @@ lru = "0.7.7" [dev-dependencies] async-trait = "0.1.53" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures-timer = "3.0.2" assert_matches = "1.4.0" lazy_static = "1.4.0" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 4dbb9e962186..bc8d7ad2ecd6 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,10 +22,10 @@ rand_chacha = { version = "0.3.1", default-features = false } gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 5576ecfc59df..2cec4182b4d4 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -11,8 +11,8 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } strum = { version = "0.24", features = ["derive"] } futures = "0.3.21" thiserror = "1.0.31" diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index 73277e5a1ea1..c031eba68321 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,13 +24,13 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index 8341d14f9251..94f97889fa95 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = "0.3.21" futures-timer = "3.0.2" parking_lot = "0.12.0" @@ -19,11 +19,11 @@ orchestra = { path = "../orchestra" } gum = { package = "tracing-gum", path = "../gum" } lru = "0.7" parity-util-mem = { version = "0.11.0", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] metered = { package = "prioritized-metered-channel", path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = { version = "0.3.21", features = ["thread-pool"] } femme = "2.2.1" assert_matches = "1.4.0" diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index 5bef01a35a56..04ad85d7110d 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -10,12 +10,12 @@ bounded-vec = "0.6" futures = "0.3.21" polkadot-primitives = { path = "../../primitives" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-parachain = { path = "../../parachain", default-features = false } schnorrkel = "0.9.1" thiserror = "1.0.31" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 59bf3b5204a8..3ed9f8b9addd 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -6,59 +6,59 @@ edition = "2021" [dependencies] # Substrate Client -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # Substrate Primitives -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # Substrate Pallets -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # Substrate Other -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # External Crates futures = "0.3.21" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index ff2a6989688d..fa913b819c8f 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -12,11 +12,11 @@ parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index 2e17acf6ff7b..c937a58d3e4d 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -14,7 +14,7 @@ polkadot-node-network-protocol = { path = "../network/protocol" } polkadot-statement-table = { path = "../../statement-table" } polkadot-node-jaeger = { path = "../jaeger" } orchestra = { path = "../orchestra" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } smallvec = "1.8.0" -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } thiserror = "1.0.31" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index 22315966ab27..b5afdf57b8bf 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -28,9 +28,9 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-overseer = { path = "../overseer" } metered = { package = "prioritized-metered-channel", path = "../metered-channel" , "version" = "0.2.0" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } kvdb = "0.11.0" parity-util-mem = { version = "0.11", default-features = false } diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index bb5335cf5520..4db4a2c39adf 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -14,20 +14,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } # Substrate dependencies -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = "0.3.21" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index f2338a893d72..80083f87a2c6 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -26,40 +26,40 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } # Substrate dependencies -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "oty-bump-heap-pages" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } serde_json = "1.0.81" -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } tokio = { version = "1.18.2", features = ["macros"] } [features] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 986febb4ce51..a1a9821f7b2e 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2021" parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index 8a16f88ad57b..92e9d4b78584 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -13,7 +13,7 @@ adder = { package = "test-parachain-adder", path = "adder" } halt = { package = "test-parachain-halt", path = "halt" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index b6ac03fea327..0c431e751fb7 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,15 +9,15 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "oty-bump-heap-pages" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index 3eec68bd647b..16f26356fff0 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } tokio = { version = "1.18.2", features = ["macros"] } diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index d0584333bc6b..907a36517fc8 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/Cargo.toml b/parachain/test-parachains/undying/Cargo.toml index b7fadddaa958..6e52f2d4c77b 100644 --- a/parachain/test-parachains/undying/Cargo.toml +++ b/parachain/test-parachains/undying/Cargo.toml @@ -9,16 +9,16 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } log = { version = "0.4.17", default-features = false } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "oty-bump-heap-pages" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/collator/Cargo.toml b/parachain/test-parachains/undying/collator/Cargo.toml index 228a45fba8d5..8c5fe0c76440 100644 --- a/parachain/test-parachains/undying/collator/Cargo.toml +++ b/parachain/test-parachains/undying/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } tokio = { version = "1.18", features = ["macros"] } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index fa5776150983..76eeaa9a1b1e 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2021" serde = { version = "1.0.137", optional = true, features = ["derive"] } scale-info = { version = "2.1.2", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } hex-literal = "0.3.4" parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index b5c91353d01b..15b74bbe1bec 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-primitives = { path = "../" } rand = "0.8.5" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index bcda62d2f197..31cdad04c9ae 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -7,26 +7,26 @@ edition = "2021" [dependencies] jsonrpsee = { version = "0.14.0", features = ["server"] } polkadot-primitives = { path = "../primitives" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index d355f2256225..9ba1cbb35403 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } @@ -53,10 +53,10 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } trie-db = "0.23.1" serde_json = "1.0.81" libsecp256k1 = "0.7.0" diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index a240bb046929..0b4e350f4846 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" paste = "1.0" enumn = "0.1.4" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 8f417a9a4f96..d1e9c2d7e161 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,76 +16,76 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -99,13 +99,13 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } separator = "0.4.1" serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 7970d8f59f00..63a9d048a83a 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index 9af3afeba7fa..45db99f07b3a 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } parity-scale-codec = { version = "3.1.5", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 14a6ccdb5e97..053fa107fe80 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,29 +14,29 @@ serde = { version = "1.0.137", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -50,11 +50,11 @@ polkadot-runtime-metrics = { path = "../metrics", default-features = false} [dev-dependencies] futures = "0.3.21" hex-literal = "0.3.4" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } thousands = "0.2.0" assert_matches = "1" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index cdb9c8cb64b4..40c4b5339e9e 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,69 +16,69 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -92,14 +92,14 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } trie-db = "0.23.1" serde_json = "1.0.81" separator = "0.4.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index 5c1374bed2fd..6106b8bd7eb7 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 17451b7f67f4..ab810f047916 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -13,52 +13,52 @@ serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" log = { version = "0.4.17", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -72,12 +72,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } # Benchmarking Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } hex-literal = { version = "0.3.4", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index 2ddb5f8e07ad..a08cf77bfe69 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 190113f251b7..58fb00b9c9e6 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,44 +15,44 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -66,12 +66,12 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 6900971cce47..b1417c65c3d8 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index bf1e97636124..a1e99cc6cca8 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,72 +15,72 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -95,12 +95,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index b991f6aef065..3531fd3748a8 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 2556e2704b85..38c96803c752 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index 471a6bd02577..21d2609809a3 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } -generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +generate-bags = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } westend-runtime = { path = "../../runtime/westend" } kusama-runtime = { path = "../../runtime/kusama" } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index 630dafa0585c..ba2f381cab13 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -12,10 +12,10 @@ polkadot-runtime-constants = { path = "../../../runtime/polkadot/constants" } kusama-runtime-constants = { path = "../../../runtime/kusama/constants" } westend-runtime-constants = { path = "../../../runtime/westend/constants" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } clap = { version = "3.1", features = ["derive"] } log = "0.4.17" diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 5b6cb42495fc..82913159b8bc 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -15,22 +15,22 @@ serde = "1.0.137" serde_json = "1.0" thiserror = "1.0.31" tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread", "sync"] } -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" } diff --git a/xcm/Cargo.toml b/xcm/Cargo.toml index 86f1f978014d..00d4aa46df31 100644 --- a/xcm/Cargo.toml +++ b/xcm/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive", "max-encoded-len"] } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } derivative = {version = "2.2.0", default-features = false, features = [ "use_core" ] } log = { version = "0.4.17", default-features = false } xcm-procedural = { path = "procedural" } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index 0a76cd739192..505fcf55ac04 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } -sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.17" [dev-dependencies] -pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" } -pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" } -sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" } +pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index f0c965e386a4..5718d6b42910 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -10,19 +10,19 @@ scale-info = { version = "2.1.2", default-features = false, features = ["derive" serde = { version = "1.0.137", optional = true, features = ["derive"] } log = { version = "0.4.17", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index 5a4e5c5ce34b..0605f253f172 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,21 +10,21 @@ parity-scale-codec = { version = "3.1.5", default-features = false, features = [ scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } log = { version = "0.4.17", default-features = false } # Polkadot dependencies polkadot-parachain = { path = "../../parachain", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } pallet-xcm = { path = "../pallet-xcm" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } [features] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index a0f614ed020f..1e47cab3af1d 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.26" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } log = { version = "0.4.17", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index d636ac22e760..a9bdef78851d 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,20 +6,20 @@ description = "Integration tests for the XCM Executor" version = "0.9.26" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } polkadot-test-client = { path = "../../../node/test/client" } polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } [features] default = ["std"] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index a6f54ffa8549..73afa501ff81 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -9,9 +9,9 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } paste = "1.0.7" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } xcm = { path = "../" } xcm-executor = { path = "../xcm-executor" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index 88083dac8c8b..3df417d109bc 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -9,13 +9,13 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } scale-info = { version = "2.1.2", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } xcm = { path = "../../" } xcm-simulator = { path = "../" } diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index 653b8aec08ee..2ea0d2a20eaa 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -10,13 +10,13 @@ codec = { package = "parity-scale-codec", version = "3.0.0" } honggfuzz = "0.5.54" scale-info = { version = "2.1.2", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } xcm = { path = "../../" } xcm-simulator = { path = "../" } From d9ece8baf5aff63092f8c22dc817ad06a87c4b5c Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 18:52:38 +0200 Subject: [PATCH 5/8] Revert "Test with release profile" This reverts commit d5384c5b603e1f8b7d14871ee57d2661e61bdb75. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3dfa23f5e811..a46f3b5915e8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -221,7 +221,7 @@ test-linux-stable: # but still want to have debug assertions. RUSTFLAGS: "-Cdebug-assertions=y -Dwarnings" script: - - time cargo test --workspace --profile release --verbose --locked --features=runtime-benchmarks,runtime-metrics + - time cargo test --workspace --profile testnet --verbose --locked --features=runtime-benchmarks,runtime-metrics From 79d810552009333af4589db4131a0ea08cc4906b Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Tue, 19 Jul 2022 18:55:48 +0200 Subject: [PATCH 6/8] Revert "Test with diener" This reverts commit 9e035759c780c2dfaf431456c8d0ff1a78e68d64. --- Cargo.toml | 2 +- cli/Cargo.toml | 20 +-- core-primitives/Cargo.toml | 6 +- erasure-coding/Cargo.toml | 4 +- node/client/Cargo.toml | 56 ++++---- node/collation-generation/Cargo.toml | 4 +- node/core/approval-voting/Cargo.toml | 18 +-- node/core/av-store/Cargo.toml | 4 +- node/core/backing/Cargo.toml | 12 +- node/core/bitfield-signing/Cargo.toml | 2 +- node/core/candidate-validation/Cargo.toml | 6 +- node/core/chain-api/Cargo.toml | 8 +- node/core/chain-selection/Cargo.toml | 2 +- node/core/dispute-coordinator/Cargo.toml | 8 +- node/core/parachains-inherent/Cargo.toml | 6 +- node/core/provisioner/Cargo.toml | 4 +- node/core/pvf-checker/Cargo.toml | 12 +- node/core/pvf/Cargo.toml | 18 +-- node/core/runtime-api/Cargo.toml | 10 +- node/jaeger/Cargo.toml | 4 +- node/malus/Cargo.toml | 6 +- node/metrics/Cargo.toml | 16 +-- node/network/approval-distribution/Cargo.toml | 4 +- .../availability-distribution/Cargo.toml | 12 +- node/network/availability-recovery/Cargo.toml | 10 +- node/network/bitfield-distribution/Cargo.toml | 8 +- node/network/bridge/Cargo.toml | 8 +- node/network/collator-protocol/Cargo.toml | 12 +- node/network/dispute-distribution/Cargo.toml | 12 +- node/network/gossip-support/Cargo.toml | 16 +-- node/network/protocol/Cargo.toml | 4 +- .../network/statement-distribution/Cargo.toml | 20 +-- node/overseer/Cargo.toml | 8 +- node/primitives/Cargo.toml | 12 +- node/service/Cargo.toml | 94 ++++++------ node/subsystem-test-helpers/Cargo.toml | 10 +- node/subsystem-types/Cargo.toml | 4 +- node/subsystem-util/Cargo.toml | 6 +- node/test/client/Cargo.toml | 28 ++-- node/test/service/Cargo.toml | 62 ++++---- parachain/Cargo.toml | 8 +- parachain/test-parachains/Cargo.toml | 2 +- parachain/test-parachains/adder/Cargo.toml | 6 +- .../test-parachains/adder/collator/Cargo.toml | 12 +- parachain/test-parachains/halt/Cargo.toml | 2 +- parachain/test-parachains/undying/Cargo.toml | 6 +- .../undying/collator/Cargo.toml | 12 +- primitives/Cargo.toml | 30 ++-- primitives/test-helpers/Cargo.toml | 6 +- rpc/Cargo.toml | 46 +++--- runtime/common/Cargo.toml | 60 ++++---- runtime/common/slot_range_helper/Cargo.toml | 4 +- runtime/kusama/Cargo.toml | 136 +++++++++--------- runtime/kusama/constants/Cargo.toml | 4 +- runtime/metrics/Cargo.toml | 4 +- runtime/parachains/Cargo.toml | 52 +++---- runtime/polkadot/Cargo.toml | 124 ++++++++-------- runtime/polkadot/constants/Cargo.toml | 4 +- runtime/rococo/Cargo.toml | 92 ++++++------ runtime/rococo/constants/Cargo.toml | 4 +- runtime/test-runtime/Cargo.toml | 78 +++++----- runtime/test-runtime/constants/Cargo.toml | 4 +- runtime/westend/Cargo.toml | 128 ++++++++--------- runtime/westend/constants/Cargo.toml | 4 +- statement-table/Cargo.toml | 2 +- utils/generate-bags/Cargo.toml | 4 +- utils/remote-ext-tests/bags-list/Cargo.toml | 8 +- utils/staking-miner/Cargo.toml | 28 ++-- xcm/Cargo.toml | 2 +- xcm/pallet-xcm-benchmarks/Cargo.toml | 20 +-- xcm/pallet-xcm/Cargo.toml | 14 +- xcm/xcm-builder/Cargo.toml | 18 +-- xcm/xcm-executor/Cargo.toml | 14 +- xcm/xcm-executor/integration-tests/Cargo.toml | 14 +- xcm/xcm-simulator/Cargo.toml | 6 +- xcm/xcm-simulator/example/Cargo.toml | 14 +- xcm/xcm-simulator/fuzzer/Cargo.toml | 14 +- 77 files changed, 772 insertions(+), 772 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ff67ab9710a9..0e0b168420c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ assert_cmd = "2.0.4" nix = "0.24.1" tempfile = "3.2.0" tokio = "1.18.2" -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-core-primitives = { path = "core-primitives" } [workspace] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6071739f644c..68c297f7eeda 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -25,22 +25,22 @@ polkadot-client = { path = "../node/client", optional = true } polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true } polkadot-performance-test = { path = "../node/test/performance-test", optional = true } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } -try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } -sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } polkadot-node-metrics = { path = "../node/metrics" } -sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } -sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } # this crate is used only to enable `trie-memory-tracker` feature # see https://github.com/paritytech/substrate/pull/6745 -sp-trie = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["wasmtime", "db", "cli", "full-node", "trie-memory-tracker", "polkadot-native"] diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index aa1c14a08de4..88a08158b742 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -5,9 +5,9 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 2e226a93b75c..620f1c3f9531 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" } polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" } novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["std", "derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.31" diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index 5bb460fb82ea..19b93e193fe7 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,37 +5,37 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } # Polkadot Runtimes polkadot-runtime = { path = "../../runtime/polkadot", optional = true } diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index dd663fb1a606..ed3ea7e28fd4 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.31" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index 88ec2b0278d2..646817a5aa4e 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -24,19 +24,19 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } -sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index 2487e9b1b36c..7398910bd4e4 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -26,9 +26,9 @@ env_logger = "0.9.0" assert_matches = "1.4.0" kvdb-memorydb = "0.11.0" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } parking_lot = "0.12.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 4051329d18ea..e8e6695da821 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] futures = "0.3.21" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } @@ -19,11 +19,11 @@ thiserror = "1.0.31" fatality = "0.0.6" [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index 8a325de4a36c..89d3d01c74b4 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -10,7 +10,7 @@ gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } wasm-timer = "0.2.5" thiserror = "1.0.31" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 5596c68b587d..c60837adbb7f 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -9,7 +9,7 @@ async-trait = "0.1.53" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-maybe-compressed-blob = { package = "sp-maybe-compressed-blob", git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } polkadot-primitives = { path = "../../../primitives" } @@ -22,9 +22,9 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-core-pvf = { path = "../pvf" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index a4b84c7add0d..c88268c1aa87 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -7,12 +7,12 @@ edition = "2021" [dependencies] futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] futures = { version = "0.3.21", features = ["thread-pool"] } @@ -20,4 +20,4 @@ maplit = "1.0.2" parity-scale-codec = "3.1.5" polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index 7a422b9bd04c..764d34b772a2 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -19,7 +19,7 @@ parity-scale-codec = "3.1.5" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } parking_lot = "0.12.0" assert_matches = "1" kvdb-memorydb = "0.11.0" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 1ddf09a8a740..75b425aa5ad3 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -18,15 +18,15 @@ polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] kvdb-memorydb = "0.11.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } assert_matches = "1.4.0" test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } futures-timer = "3.0.2" diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index 38973c28f53c..82a8b5d6fd5c 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -12,6 +12,6 @@ thiserror = "1.0.31" async-trait = "0.1.53" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-primitives = { path = "../../../primitives" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 529a3a7789e9..0edaa1d302fa 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -18,8 +18,8 @@ rand = "0.8.5" fatality = "0.0.6" [dev-dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index 3265ffde9431..25022d1ad570 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -15,14 +15,14 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-overseer = { path = "../../overseer" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers"} test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index 56a23f5da0c7..b12d77f34e94 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -25,15 +25,15 @@ parity-scale-codec = { version = "3.1.5", default-features = false, features = [ polkadot-parachain = { path = "../../../parachain" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util"} -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor-wasmtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor-common = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-wasm-interface = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] adder = { package = "test-parachain-adder", path = "../../../parachain/test-parachains/adder" } diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 4b46aac27564..3af58ab5d2a0 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -10,17 +10,17 @@ gum = { package = "tracing-gum", path = "../../gum" } memory-lru = "0.1.0" parity-util-mem = { version = "0.11.0", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index 4bfc4c4a0bea..5aee83997cfa 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -12,8 +12,8 @@ lazy_static = "1.4" parking_lot = "0.12.0" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.31" log = "0.4.17" parity-scale-codec = { version = "3.1.5", default-features = false } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index 484d1476bbfa..0e47f235b61a 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -27,8 +27,8 @@ parity-util-mem = { version = "0.11.0", default-features = false, features = ["j color-eyre = { version = "0.6.1", default-features = false } assert_matches = "1.5" async-trait = "0.1.53" -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } clap = { version = "3.1", features = ["derive"] } futures = "0.3.21" futures-timer = "3.0.2" @@ -40,5 +40,5 @@ default = [] [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index ef87303ef2fc..343ec9689298 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -13,11 +13,11 @@ gum = { package = "tracing-gum", path = "../gum" } metered = { package = "prioritized-metered-channel", path = "../metered-channel" , "version" = "0.2.0" } # Both `sc-service` and `sc-cli` are required by runtime metrics `logger_hook()`. -sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } codec = { package = "parity-scale-codec", version = "3.0.0" } primitives = { package = "polkadot-primitives", path = "../../primitives/" } bs58 = { version = "0.4.0", features = ["alloc"] } @@ -30,10 +30,10 @@ tempfile = "3.2.0" hyper = { version = "0.14.19", default-features = false, features = ["http1", "tcp"] } tokio = "1.18.2" polkadot-test-service = { path = "../test/service", features=["runtime-metrics"]} -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } prometheus-parse = {version = "0.2.2"} [features] diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index c840fe93ff8c..f00e79681a01 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -16,8 +16,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index 063bb3aa4960..8fba00d7017a 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -14,8 +14,8 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.31" rand = "0.8.5" derive_more = "0.99.17" @@ -24,10 +24,10 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" assert_matches = "1.4.0" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index 387c832532c2..e1448d8317c2 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -19,7 +19,7 @@ polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-network-protocol = { path = "../../network/protocol" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] assert_matches = "1.4.0" @@ -27,10 +27,10 @@ env_logger = "0.9.0" futures-timer = "3.0.2" log = "0.4.17" -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index e4657a20d763..f6f32ee159a0 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -16,10 +16,10 @@ rand = "0.8" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } maplit = "1.0.2" log = "0.4.17" env_logger = "0.9.0" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index 7d76ddd18430..40ae9cac7fe2 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -11,8 +11,8 @@ futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-node-network-protocol = { path = "../protocol" } @@ -25,7 +25,7 @@ thiserror = "1" [dev-dependencies] assert_matches = "1.4.0" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index 1e9140cdd3a9..a8645bd8517d 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -10,9 +10,9 @@ futures = "0.3.21" futures-timer = "3" gum = { package = "tracing-gum", path = "../../gum" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../../../primitives" } polkadot-node-network-protocol = { path = "../../network/protocol" } @@ -27,9 +27,9 @@ log = "0.4.17" env_logger = "0.9.0" assert_matches = "1.4.0" -sp-core = { git = "https://github.com/paritytech/substrate", features = ["std"] , branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["std"] } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } parity-scale-codec = { version = "3.1.5", features = ["std"] } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index 1215e38baf0f..9f89001a89a5 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -15,9 +15,9 @@ polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-network-protocol = { path = "../../network/protocol" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } polkadot-node-primitives = { path = "../../primitives" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.31" fatality = "0.0.6" lru = "0.7.7" @@ -25,9 +25,9 @@ lru = "0.7.7" [dev-dependencies] async-trait = "0.1.53" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" assert_matches = "1.4.0" lazy_static = "1.4.0" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index bc8d7ad2ecd6..4dbb9e962186 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -5,10 +5,10 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-network-protocol = { path = "../protocol" } polkadot-node-subsystem = { path = "../../subsystem" } @@ -22,10 +22,10 @@ rand_chacha = { version = "0.3.1", default-features = false } gum = { package = "tracing-gum", path = "../../gum" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 2cec4182b4d4..5576ecfc59df 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -11,8 +11,8 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-jaeger = { path = "../../jaeger" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } strum = { version = "0.24", features = ["derive"] } futures = "0.3.21" thiserror = "1.0.31" diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index c031eba68321..73277e5a1ea1 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -9,8 +9,8 @@ edition = "2021" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-node-subsystem = {path = "../../subsystem" } polkadot-node-primitives = { path = "../../primitives" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } @@ -24,13 +24,13 @@ fatality = "0.0.6" [dev-dependencies] polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } futures-timer = "3.0.2" polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index 94f97889fa95..8341d14f9251 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" futures-timer = "3.0.2" parking_lot = "0.12.0" @@ -19,11 +19,11 @@ orchestra = { path = "../orchestra" } gum = { package = "tracing-gum", path = "../gum" } lru = "0.7" parity-util-mem = { version = "0.11.0", default-features = false } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] metered = { package = "prioritized-metered-channel", path = "../metered-channel" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = { version = "0.3.21", features = ["thread-pool"] } femme = "2.2.1" assert_matches = "1.4.0" diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index 04ad85d7110d..5bef01a35a56 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -10,12 +10,12 @@ bounded-vec = "0.6" futures = "0.3.21" polkadot-primitives = { path = "../../primitives" } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-vrf = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-parachain = { path = "../../parachain", default-features = false } schnorrkel = "0.9.1" thiserror = "1.0.31" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 3ed9f8b9addd..59bf3b5204a8 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -6,59 +6,59 @@ edition = "2021" [dependencies] # Substrate Client -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -service = { package = "sc-service", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-uncles = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" } +service = { package = "sc-service", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +telemetry = { package = "sc-telemetry", git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Primitives -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-storage = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Pallets -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } # Substrate Other -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/paritytech/substrate", branch = "master" } # External Crates futures = "0.3.21" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index fa913b819c8f..ff2a6989688d 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -12,11 +12,11 @@ parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } polkadot-node-subsystem-util = { path = "../subsystem-util" } polkadot-primitives = { path = "../../primitives" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index c937a58d3e4d..2e17acf6ff7b 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -14,7 +14,7 @@ polkadot-node-network-protocol = { path = "../network/protocol" } polkadot-statement-table = { path = "../../statement-table" } polkadot-node-jaeger = { path = "../jaeger" } orchestra = { path = "../orchestra" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } smallvec = "1.8.0" -substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.31" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index b5afdf57b8bf..22315966ab27 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -28,9 +28,9 @@ polkadot-node-primitives = { path = "../primitives" } polkadot-overseer = { path = "../overseer" } metered = { package = "prioritized-metered-channel", path = "../metered-channel" , "version" = "0.2.0" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } kvdb = "0.11.0" parity-util-mem = { version = "0.11", default-features = false } diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index 4db4a2c39adf..bb5335cf5520 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -14,20 +14,20 @@ polkadot-primitives = { path = "../../../primitives" } polkadot-node-subsystem = { path = "../../subsystem" } # Substrate dependencies -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index 80083f87a2c6..f2338a893d72 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -26,40 +26,40 @@ test-runtime-constants = { path = "../../../runtime/test-runtime/constants" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } # Substrate dependencies -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-executor = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-network = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "wasmtime" ] , branch = "oty-bump-heap-pages" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } +babe = { package = "sc-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master" } +consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +grandpa_primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate", branch = "master" } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "wasmtime" ] } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } serde_json = "1.0.81" -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.18.2", features = ["macros"] } [features] diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index a1a9821f7b2e..986febb4ce51 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -12,10 +12,10 @@ edition = "2021" parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] } parity-util-mem = { version = "0.11.0", default-features = false, optional = true } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } derive_more = "0.99.11" diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index 92e9d4b78584..8a16f88ad57b 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -13,7 +13,7 @@ adder = { package = "test-parachain-adder", path = "adder" } halt = { package = "test-parachain-halt", path = "halt" } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index 0c431e751fb7..b6ac03fea327 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -9,15 +9,15 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index 16f26356fff0..3eec68bd647b 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.18.2", features = ["macros"] } diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index 907a36517fc8..d0584333bc6b 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" [dependencies] [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/Cargo.toml b/parachain/test-parachains/undying/Cargo.toml index 6e52f2d4c77b..b7fadddaa958 100644 --- a/parachain/test-parachains/undying/Cargo.toml +++ b/parachain/test-parachains/undying/Cargo.toml @@ -9,16 +9,16 @@ build = "build.rs" [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } tiny-keccak = { version = "2.0.2", features = ["keccak"] } dlmalloc = { version = "0.2.3", features = [ "global" ] } log = { version = "0.4.17", default-features = false } # We need to make sure the global allocator is disabled until we have support of full substrate externalities -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, features = [ "disable_allocator" ] , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = [ "std" ] diff --git a/parachain/test-parachains/undying/collator/Cargo.toml b/parachain/test-parachains/undying/collator/Cargo.toml index 8c5fe0c76440..228a45fba8d5 100644 --- a/parachain/test-parachains/undying/collator/Cargo.toml +++ b/parachain/test-parachains/undying/collator/Cargo.toml @@ -27,9 +27,9 @@ polkadot-service = { path = "../../../../node/service", features = ["rococo-nati polkadot-node-primitives = { path = "../../../../node/primitives" } polkadot-node-subsystem = { path = "../../../../node/subsystem" } -sc-cli = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } # This one is tricky. Even though it is not used directly by the collator, we still need it for the # `puppet_worker` binary, which is required for the integration test. However, this shouldn't be @@ -40,8 +40,8 @@ polkadot-node-core-pvf = { path = "../../../../node/core/pvf" } polkadot-parachain = { path = "../../.." } polkadot-test-service = { path = "../../../../node/test/service" } -substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-service = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } tokio = { version = "1.18", features = ["macros"] } diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 76eeaa9a1b1e..fa5776150983 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -8,24 +8,24 @@ edition = "2021" serde = { version = "1.0.137", optional = true, features = ["derive"] } scale-info = { version = "2.1.2", default-features = false, features = ["bit-vec", "derive"] } parity-scale-codec = { version = "3.1.5", default-features = false, features = ["bit-vec", "derive"] } -primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +runtime_primitives = { package = "sp-runtime", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-parachain = { path = "../parachain", default-features = false } polkadot-core-primitives = { path = "../core-primitives", default-features = false } -trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +trie = { package = "sp-trie", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } hex-literal = "0.3.4" parity-util-mem = { version = "0.11.0", default-features = false, optional = true } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index 15b74bbe1bec..b5c91353d01b 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-application-crypto = { package = "sp-application-crypto", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-primitives = { path = "../" } rand = "0.8.5" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 31cdad04c9ae..bcda62d2f197 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -7,26 +7,26 @@ edition = "2021" [dependencies] jsonrpsee = { version = "0.14.0", features = ["server"] } polkadot-primitives = { path = "../primitives" } -sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-babe-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-consensus-epochs = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-sync-state-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +txpool-api = { package = "sc-transaction-pool-api", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-rpc-system = { package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-mmr-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget = { git = "https://github.com/paritytech/substrate", branch = "master" } +beefy-gadget-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } +substrate-state-trie-migration-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 9ba1cbb35403..d355f2256225 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -15,34 +15,34 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } libsecp256k1 = { version = "0.7.0", default-features = false } @@ -53,10 +53,10 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.23.1" serde_json = "1.0.81" libsecp256k1 = "0.7.0" diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index 0b4e350f4846..a240bb046929 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -8,8 +8,8 @@ edition = "2021" paste = "1.0" enumn = "0.1.4" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index d1e9c2d7e161..8f417a9a4f96 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -16,76 +16,76 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } kusama-runtime-constants = { package = "kusama-runtime-constants", path = "./constants", default-features = false } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { package = "sp-arithmetic", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-gilt = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-gilt = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-fn = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -99,13 +99,13 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } separator = "0.4.1" serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 63a9d048a83a..7970d8f59f00 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index 45db99f07b3a..9af3afeba7fa 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Parity Technologies "] edition = "2021" [dependencies] -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } parity-scale-codec = { version = "3.1.5", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index 053fa107fe80..14a6ccdb5e97 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -14,29 +14,29 @@ serde = { version = "1.0.137", features = [ "derive" ], optional = true } derive_more = "0.99.17" bitflags = "1.3.2" -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-keystore = { git = "https://github.com/paritytech/substrate", optional = true , branch = "oty-bump-heap-pages" } -sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true } +sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } xcm = { package = "xcm", path = "../../xcm", default-features = false } xcm-executor = { package = "xcm-executor", path = "../../xcm/xcm-executor", default-features = false } @@ -50,11 +50,11 @@ polkadot-runtime-metrics = { path = "../metrics", default-features = false} [dev-dependencies] futures = "0.3.21" hex-literal = "0.3.4" -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support-test = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../primitives/test-helpers"} -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } thousands = "0.2.0" assert_matches = "1" diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index 40c4b5339e9e..cdb9c8cb64b4 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -16,69 +16,69 @@ serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-child-bounties = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-child-bounties = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } polkadot-runtime-constants = { package = "polkadot-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-tips = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-tips = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -92,14 +92,14 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } trie-db = "0.23.1" serde_json = "1.0.81" separator = "0.4.1" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index 6106b8bd7eb7..5c1374bed2fd 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index ab810f047916..17451b7f67f4 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -13,52 +13,52 @@ serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" log = { version = "0.4.17", default-features = false } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-beefy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-mmr = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-merkle-tree = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-beefy-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-mmr = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } rococo-runtime-constants = { package = "rococo-runtime-constants", path = "./constants", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -72,12 +72,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } # Benchmarking Dependencies -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index a08cf77bfe69..2ddb5f8e07ad 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index 58fb00b9c9e6..190113f251b7 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -15,44 +15,44 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-system = {git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } test-runtime-constants = { package = "test-runtime-constants", path = "./constants", default-features = false } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } primitives = { package = "polkadot-primitives", path = "../../primitives", default-features = false } @@ -66,12 +66,12 @@ xcm = { path = "../../xcm", default-features = false } [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index b1417c65c3d8..6900971cce47 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index a1e99cc6cca8..bf1e97636124 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -15,72 +15,72 @@ serde = { version = "1.0.137", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.8.0" -authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -beefy-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-version = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +authority-discovery-primitives = { package = "sp-authority-discovery", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +babe-primitives = { package = "sp-consensus-babe", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +beefy-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +offchain-primitives = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +tx-pool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +block-builder-api = { package = "sp-block-builder", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } westend-runtime-constants = { package = "westend-runtime-constants", path = "./constants", default-features = false } -pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-bags-list = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-collective = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-membership = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-proxy = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-recovery = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-scheduler = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-society = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-treasury = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-vesting = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-authorship = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-babe = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-democracy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-elections-phragmen = { package = "pallet-elections-phragmen", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-identity = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-indices = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-membership = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-nomination-pools = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-offences = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-recovery = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-scheduler = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-society = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-staking-reward-curve = { package = "pallet-staking-reward-curve", git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-vesting = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } pallet-xcm = { path = "../../xcm/pallet-xcm", default-features = false } pallet-xcm-benchmarks = { path = "../../xcm/pallet-xcm-benchmarks", default-features = false, optional = true } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -frame-try-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } -pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-try-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +frame-system-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-election-provider-support-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-nomination-pools-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-offences-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } +pallet-session-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true } hex-literal = { version = "0.3.4", optional = true } runtime-common = { package = "polkadot-runtime-common", path = "../common", default-features = false } @@ -95,12 +95,12 @@ xcm-builder = { package = "xcm-builder", path = "../../xcm/xcm-builder", default [dev-dependencies] hex-literal = "0.3.4" tiny-keccak = { version = "2.0.2", features = ["keccak"] } -keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-trie = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" } +sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" } serde_json = "1.0.81" [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index 3531fd3748a8..b991f6aef065 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" [dependencies] smallvec = "1.8.0" -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } primitives = { package = "polkadot-primitives", path = "../../../primitives", default-features = false } runtime-common = { package = "polkadot-runtime-common", path = "../../common", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [features] default = ["std"] diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 38c96803c752..2556e2704b85 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } primitives = { package = "polkadot-primitives", path = "../primitives" } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index 21d2609809a3..471a6bd02577 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -7,8 +7,8 @@ edition = "2021" [dependencies] clap = { version = "3.1", features = ["derive"] } -generate-bags = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +generate-bags = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } westend-runtime = { path = "../../runtime/westend" } kusama-runtime = { path = "../../runtime/kusama" } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index ba2f381cab13..630dafa0585c 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -12,10 +12,10 @@ polkadot-runtime-constants = { path = "../../../runtime/polkadot/constants" } kusama-runtime-constants = { path = "../../../runtime/kusama/constants" } westend-runtime-constants = { path = "../../../runtime/westend/constants" } -pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-bags-list-remote-tests = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } clap = { version = "3.1", features = ["derive"] } log = "0.4.17" diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 82913159b8bc..5b6cb42495fc 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -15,22 +15,22 @@ serde = "1.0.137" serde_json = "1.0" thiserror = "1.0.31" tokio = { version = "1.18.2", features = ["macros", "rt-multi-thread", "sync"] } -remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +remote-externalities = { git = "https://github.com/paritytech/substrate", branch = "master" } signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-version = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-npos-elections = { git = "https://github.com/paritytech/substrate", branch = "master" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "master" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-election-provider-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-election-provider-multi-phase = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-staking = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" } core-primitives = { package = "polkadot-core-primitives", path = "../../core-primitives" } diff --git a/xcm/Cargo.toml b/xcm/Cargo.toml index 00d4aa46df31..86f1f978014d 100644 --- a/xcm/Cargo.toml +++ b/xcm/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive", "max-encoded-len"] } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } derivative = {version = "2.2.0", default-features = false, features = [ "use_core" ] } log = { version = "0.4.17", default-features = false } xcm-procedural = { path = "procedural" } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index 505fcf55ac04..0a76cd739192 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -10,21 +10,21 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false } scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } -frame-support = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } -frame-system = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } -sp-std = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +frame-support = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +frame-system = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +sp-runtime = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } +sp-std = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } xcm-executor = { path = "../xcm-executor", default-features = false, features = ["runtime-benchmarks"] } -frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +frame-benchmarking = { default-features = false, branch = "master", git = "https://github.com/paritytech/substrate" } xcm = { path = "..", default-features = false, features = ["runtime-benchmarks"] } log = "0.4.17" [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } -pallet-assets = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } -sp-tracing = { git = "https://github.com/paritytech/substrate" , branch = "oty-bump-heap-pages" } +pallet-balances = { branch = "master", git = "https://github.com/paritytech/substrate" } +pallet-assets = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-core = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-io = { branch = "master", git = "https://github.com/paritytech/substrate" } +sp-tracing = { branch = "master", git = "https://github.com/paritytech/substrate" } xcm-builder = { path = "../xcm-builder" } xcm = { path = ".." } # temp diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index 5718d6b42910..f0c965e386a4 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -10,19 +10,19 @@ scale-info = { version = "2.1.2", default-features = false, features = ["derive" serde = { version = "1.0.137", optional = true, features = ["derive"] } log = { version = "0.4.17", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } +frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } [dev-dependencies] -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } xcm-builder = { path = "../xcm-builder" } polkadot-parachain = { path = "../../parachain" } diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index 0605f253f172..5a4e5c5ce34b 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -10,21 +10,21 @@ parity-scale-codec = { version = "3.1.5", default-features = false, features = [ scale-info = { version = "2.1.2", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } xcm-executor = { path = "../xcm-executor", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } log = { version = "0.4.17", default-features = false } # Polkadot dependencies polkadot-parachain = { path = "../../parachain", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-xcm = { path = "../pallet-xcm" } polkadot-runtime-parachains = { path = "../../runtime/parachains" } [features] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index 1e47cab3af1d..a0f614ed020f 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -9,14 +9,14 @@ version = "0.9.26" impl-trait-for-tuples = "0.2.2" parity-scale-codec = { version = "3.1.5", default-features = false, features = ["derive"] } xcm = { path = "..", default-features = false } -sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-arithmetic = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } log = { version = "0.4.17", default-features = false } -frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true , branch = "oty-bump-heap-pages" } +frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false, optional = true } [features] default = ["std"] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index a9bdef78851d..d636ac22e760 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -6,20 +6,20 @@ description = "Integration tests for the XCM Executor" version = "0.9.26" [dependencies] -frame-support = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } futures = "0.3.21" pallet-xcm = { path = "../../pallet-xcm" } polkadot-test-client = { path = "../../../node/test/client" } polkadot-test-runtime = { path = "../../../runtime/test-runtime" } polkadot-test-service = { path = "../../../node/test/service" } -sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "oty-bump-heap-pages" } -sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../..", default-features = false } xcm-executor = { path = ".." } -sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } [features] default = ["std"] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index 73afa501ff81..a6f54ffa8549 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -9,9 +9,9 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } paste = "1.0.7" -frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../" } xcm-executor = { path = "../xcm-executor" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index 3df417d109bc..88083dac8c8b 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -9,13 +9,13 @@ edition = "2021" codec = { package = "parity-scale-codec", version = "3.0.0" } scale-info = { version = "2.1.2", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../../" } xcm-simulator = { path = "../" } diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index 2ea0d2a20eaa..653b8aec08ee 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -10,13 +10,13 @@ codec = { package = "parity-scale-codec", version = "3.0.0" } honggfuzz = "0.5.54" scale-info = { version = "2.1.2", features = ["derive"] } -frame-system = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -frame-support = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-std = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-core = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } -sp-io = { git = "https://github.com/paritytech/substrate", branch = "oty-bump-heap-pages" } +frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } +frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } +pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } +sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../../" } xcm-simulator = { path = "../" } From 60eb3d5aa380b4b0025424f8367a36a9537b54a9 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 20 Jul 2022 11:07:26 +0200 Subject: [PATCH 7/8] cargo update -p sp-io Signed-off-by: Oliver Tale-Yazdi --- Cargo.lock | 342 ++++++++++++++++++++++++++--------------------------- 1 file changed, 171 insertions(+), 171 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 50e765016390..ba58d754fad1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -423,7 +423,7 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "beefy-primitives", "fnv", @@ -457,7 +457,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "beefy-gadget", "beefy-primitives", @@ -477,7 +477,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "beefy-primitives", "sp-api", @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "beefy-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -1958,7 +1958,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", ] @@ -1976,7 +1976,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "Inflector", "chrono", @@ -2049,7 +2049,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2060,7 +2060,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -2076,7 +2076,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -2104,7 +2104,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "bitflags", "frame-metadata", @@ -2134,7 +2134,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2146,7 +2146,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -2158,7 +2158,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro2", "quote", @@ -2168,7 +2168,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-support-test-pallet", @@ -2191,7 +2191,7 @@ dependencies = [ [[package]] name = "frame-support-test-pallet" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -2202,7 +2202,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "log", @@ -2219,7 +2219,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -2234,7 +2234,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "sp-api", @@ -2243,7 +2243,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "sp-api", @@ -2425,7 +2425,7 @@ dependencies = [ [[package]] name = "generate-bags" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "chrono", "frame-election-provider-support", @@ -4797,7 +4797,7 @@ checksum = "20448fd678ec04e6ea15bbe0476874af65e98a01515d667aa49f1434dc44ebf4" [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4811,7 +4811,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -4827,7 +4827,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -4842,7 +4842,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4866,7 +4866,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4886,7 +4886,7 @@ dependencies = [ [[package]] name = "pallet-bags-list-remote-tests" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4905,7 +4905,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4920,7 +4920,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "beefy-primitives", "frame-support", @@ -4936,7 +4936,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "beefy-merkle-tree", "beefy-primitives", @@ -4959,7 +4959,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4977,7 +4977,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4996,7 +4996,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5013,7 +5013,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5029,7 +5029,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5052,7 +5052,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5065,7 +5065,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5083,7 +5083,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5098,7 +5098,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5121,7 +5121,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5137,7 +5137,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5157,7 +5157,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5174,7 +5174,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5191,7 +5191,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -5209,7 +5209,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -5224,7 +5224,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5239,7 +5239,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -5256,7 +5256,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5275,7 +5275,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -5292,7 +5292,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5315,7 +5315,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5331,7 +5331,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5346,7 +5346,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5361,7 +5361,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5377,7 +5377,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -5398,7 +5398,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5414,7 +5414,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -5428,7 +5428,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5451,7 +5451,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -5462,7 +5462,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "sp-arithmetic", @@ -5471,7 +5471,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -5485,7 +5485,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5503,7 +5503,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5522,7 +5522,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-support", "frame-system", @@ -5538,7 +5538,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -5553,7 +5553,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5564,7 +5564,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5581,7 +5581,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -5597,7 +5597,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-benchmarking", "frame-support", @@ -8055,7 +8055,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "env_logger 0.9.0", "jsonrpsee", @@ -8403,7 +8403,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "sp-core", @@ -8414,7 +8414,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "futures", @@ -8441,7 +8441,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "futures-timer", @@ -8464,7 +8464,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8480,7 +8480,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.0", @@ -8497,7 +8497,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8508,7 +8508,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "chrono", "clap", @@ -8547,7 +8547,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "fnv", "futures", @@ -8575,7 +8575,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "hash-db", "kvdb", @@ -8600,7 +8600,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "futures", @@ -8624,7 +8624,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "fork-tree", @@ -8667,7 +8667,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "jsonrpsee", @@ -8689,7 +8689,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8702,7 +8702,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "futures", @@ -8727,7 +8727,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "sc-client-api", "sp-authorship", @@ -8738,7 +8738,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "lazy_static", "lru 0.7.7", @@ -8765,7 +8765,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "environmental", "parity-scale-codec", @@ -8782,7 +8782,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "parity-scale-codec", @@ -8797,7 +8797,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "cfg-if 1.0.0", "libc", @@ -8817,7 +8817,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "ahash", "async-trait", @@ -8858,7 +8858,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "finality-grandpa", "futures", @@ -8879,7 +8879,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "ansi_term", "futures", @@ -8896,7 +8896,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "hex", @@ -8911,7 +8911,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "asynchronous-codec", @@ -8960,7 +8960,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "bitflags", "futures", @@ -8978,7 +8978,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "ahash", "futures", @@ -8995,7 +8995,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "libp2p", @@ -9015,7 +9015,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "fork-tree", "futures", @@ -9042,7 +9042,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "bytes", "fnv", @@ -9070,7 +9070,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "libp2p", @@ -9083,7 +9083,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9092,7 +9092,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "hash-db", @@ -9122,7 +9122,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "jsonrpsee", @@ -9145,7 +9145,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "jsonrpsee", @@ -9158,7 +9158,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "directories", @@ -9225,7 +9225,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "parity-scale-codec", @@ -9239,7 +9239,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -9258,7 +9258,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "libc", @@ -9277,7 +9277,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "chrono", "futures", @@ -9295,7 +9295,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "ansi_term", "atty", @@ -9326,7 +9326,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9337,7 +9337,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "futures-timer", @@ -9364,7 +9364,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "log", @@ -9377,7 +9377,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "futures-timer", @@ -9862,7 +9862,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "hash-db", "log", @@ -9879,7 +9879,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "blake2", "proc-macro-crate", @@ -9891,7 +9891,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -9904,7 +9904,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "integer-sqrt", "num-traits", @@ -9919,7 +9919,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -9932,7 +9932,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "parity-scale-codec", @@ -9944,7 +9944,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "sp-api", @@ -9956,7 +9956,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "log", @@ -9974,7 +9974,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "futures", @@ -9993,7 +9993,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "merlin", @@ -10016,7 +10016,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10030,7 +10030,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10043,7 +10043,7 @@ dependencies = [ [[package]] name = "sp-core" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "base58", "bitflags", @@ -10089,7 +10089,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "blake2", "byteorder", @@ -10103,7 +10103,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro2", "quote", @@ -10114,7 +10114,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "kvdb", "parking_lot 0.12.0", @@ -10123,7 +10123,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro2", "quote", @@ -10133,7 +10133,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "environmental", "parity-scale-codec", @@ -10144,7 +10144,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "finality-grandpa", "log", @@ -10162,7 +10162,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -10176,7 +10176,7 @@ dependencies = [ [[package]] name = "sp-io" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "hash-db", @@ -10201,7 +10201,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "lazy_static", "sp-core", @@ -10212,7 +10212,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "futures", @@ -10229,7 +10229,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "thiserror", "zstd", @@ -10238,7 +10238,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "parity-scale-codec", @@ -10253,7 +10253,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10267,7 +10267,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "sp-api", "sp-core", @@ -10277,7 +10277,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "backtrace", "lazy_static", @@ -10287,7 +10287,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "rustc-hash", "serde", @@ -10297,7 +10297,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "either", "hash256-std-hasher", @@ -10319,7 +10319,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10336,7 +10336,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "Inflector", "proc-macro-crate", @@ -10348,7 +10348,7 @@ dependencies = [ [[package]] name = "sp-sandbox" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "parity-scale-codec", @@ -10362,7 +10362,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "serde", "serde_json", @@ -10371,7 +10371,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10385,7 +10385,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "scale-info", @@ -10396,7 +10396,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.12.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "hash-db", "log", @@ -10418,12 +10418,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" [[package]] name = "sp-storage" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10436,7 +10436,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "log", "sp-core", @@ -10449,7 +10449,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "futures-timer", @@ -10465,7 +10465,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "sp-std", @@ -10477,7 +10477,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "sp-api", "sp-runtime", @@ -10486,7 +10486,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "log", @@ -10502,7 +10502,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "hash-db", "memory-db", @@ -10518,7 +10518,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10535,7 +10535,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10546,7 +10546,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "impl-trait-for-tuples", "log", @@ -10742,7 +10742,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "platforms", ] @@ -10750,7 +10750,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -10771,7 +10771,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures-util", "hyper", @@ -10784,7 +10784,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "jsonrpsee", "log", @@ -10805,7 +10805,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "async-trait", "futures", @@ -10831,7 +10831,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "futures", "substrate-test-utils-derive", @@ -10841,7 +10841,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10852,7 +10852,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "ansi_term", "build-helper", @@ -11566,7 +11566,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=master#ced41695aafa648ebdb01305e563fa7ca89756bc" +source = "git+https://github.com/paritytech/substrate?branch=master#7b81072843e584ef2bee449081aed5c963021ee9" dependencies = [ "clap", "jsonrpsee", From f4840813bb3271ac926801653dd85e4c626ed2b7 Mon Sep 17 00:00:00 2001 From: Oliver Tale-Yazdi Date: Wed, 20 Jul 2022 12:28:35 +0200 Subject: [PATCH 8/8] Update tests/benchmark_block.rs Co-authored-by: Chevdor --- tests/benchmark_block.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/benchmark_block.rs b/tests/benchmark_block.rs index 924c5d722e21..ee68d43b2aa5 100644 --- a/tests/benchmark_block.rs +++ b/tests/benchmark_block.rs @@ -44,7 +44,7 @@ async fn benchmark_block_works() { // Build a chain with a single block. build_chain(&runtime, base_path).await.unwrap(); - // Benchmark the that one. + // Benchmark the one block. benchmark_block(&runtime, base_path, 1).unwrap(); } }