From 456d96e20c28cebaca26dbad978c8cecefd91f5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 02:19:51 +0000 Subject: [PATCH] Update sp-runtime requirement from 7.0.0 to 21.0.0 Updates the requirements on [sp-runtime](https://github.com/paritytech/substrate) to permit the latest version. - [Release notes](https://github.com/paritytech/substrate/releases) - [Changelog](https://github.com/paritytech/substrate/blob/master/docs/CHANGELOG.md) - [Commits](https://github.com/paritytech/substrate/commits) --- updated-dependencies: - dependency-name: sp-runtime dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- subxt/Cargo.toml | 2 +- testing/integration-tests/Cargo.toml | 2 +- testing/test-runtime/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 9467578858..fa5620f52e 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -45,7 +45,7 @@ subxt-macro = { version = "0.25.0", path = "../macro" } subxt-metadata = { version = "0.25.0", path = "../metadata" } sp-core = { version = "7.0.0", default-features = false } -sp-runtime = "7.0.0" +sp-runtime = "21.0.0" frame-metadata = "15.0.0" derivative = "2.2.0" diff --git a/testing/integration-tests/Cargo.toml b/testing/integration-tests/Cargo.toml index 9c76615974..d4de8443b0 100644 --- a/testing/integration-tests/Cargo.toml +++ b/testing/integration-tests/Cargo.toml @@ -25,7 +25,7 @@ regex = "1.5.0" scale-info = { version = "2.0.0", features = ["bit-vec"] } sp-core = { version = "7.0.0", default-features = false } sp-keyring = "7.0.0" -sp-runtime = "7.0.0" +sp-runtime = "21.0.0" syn = "1.0.0" subxt = { version = "0.25.0", path = "../../subxt" } subxt-codegen = { version = "0.25.0", path = "../../codegen" } diff --git a/testing/test-runtime/Cargo.toml b/testing/test-runtime/Cargo.toml index ae32e25e6d..d6d1341268 100644 --- a/testing/test-runtime/Cargo.toml +++ b/testing/test-runtime/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] subxt = { path = "../../subxt" } -sp-runtime = "7.0.0" +sp-runtime = "21.0.0" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] } [build-dependencies]