diff --git a/Cargo.lock b/Cargo.lock index 8ead4ce860..0ec21c8362 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -997,9 +997,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "15.0.0" +version = "15.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df6bb8542ef006ef0de09a5c4420787d79823c0ed7924225822362fd2bf2ff2d" +checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" dependencies = [ "cfg-if", "parity-scale-codec", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0c0537a52c..7f786cfaff 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -32,7 +32,7 @@ serde_json = "1.0.95" # hex encoded metadata to bytes hex = "0.4.3" # actual metadata types -frame-metadata = { version = "15.0.0", features = ["v14", "std"] } +frame-metadata = { version = "15.1.0", features = ["v14", "std"] } # decode bytes into the metadata types scale = { package = "parity-scale-codec", version = "3.0.0", default-features = false } # generate the item mod for codegen diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 3d2940fdf8..af42bba052 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -15,7 +15,7 @@ description = "Generate an API for interacting with a substrate node from FRAME [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full"] } darling = "0.14.4" -frame-metadata = "15.0.0" +frame-metadata = "15.1.0" heck = "0.4.1" proc-macro2 = "1.0.55" quote = "1.0.8" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 0ef5b94a37..42ae5b2f60 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -15,7 +15,7 @@ description = "Command line utilities for checking metadata compatibility betwee [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full"] } -frame-metadata = "15.0.0" +frame-metadata = "15.1.0" scale-info = "2.5.0" sp-core-hashing = "7.0.0" diff --git a/subxt/Cargo.toml b/subxt/Cargo.toml index 04f038bfe9..b7ed700d26 100644 --- a/subxt/Cargo.toml +++ b/subxt/Cargo.toml @@ -49,7 +49,7 @@ serde_json = { version = "1.0.95", features = ["raw_value"] } thiserror = "1.0.40" tracing = "0.1.34" parking_lot = "0.12.0" -frame-metadata = "15.0.0" +frame-metadata = "15.1.0" derivative = "2.2.0" either = "1.8.1" diff --git a/testing/integration-tests/Cargo.toml b/testing/integration-tests/Cargo.toml index 6f50290bb9..2edd905ef8 100644 --- a/testing/integration-tests/Cargo.toml +++ b/testing/integration-tests/Cargo.toml @@ -18,7 +18,7 @@ default = ["subxt/integration-tests"] [dev-dependencies] assert_matches = "1.5.0" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] } -frame-metadata = "15.0.0" +frame-metadata = "15.1.0" futures = "0.3.27" hex = "0.4.3" regex = "1.7.3" diff --git a/testing/ui-tests/Cargo.toml b/testing/ui-tests/Cargo.toml index 21ca7e3cff..4ad293bb66 100644 --- a/testing/ui-tests/Cargo.toml +++ b/testing/ui-tests/Cargo.toml @@ -11,7 +11,7 @@ publish = false [dev-dependencies] trybuild = "1.0.79" scale-info = { version = "2.5.0", features = ["bit-vec"] } -frame-metadata = "15.0.0" +frame-metadata = "15.1.0" codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] } subxt = { path = "../../subxt" } subxt-metadata = { path = "../../metadata" }