From d1c78cd44c415644a556e85095f7916f5aa92ff8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 17:04:49 +0000 Subject: [PATCH] build(deps): bump parity-scale-codec from 3.6.12 to 3.7.2 Bumps [parity-scale-codec](https://github.com/paritytech/parity-scale-codec) from 3.6.12 to 3.7.2. - [Release notes](https://github.com/paritytech/parity-scale-codec/releases) - [Changelog](https://github.com/paritytech/parity-scale-codec/blob/master/CHANGELOG.md) - [Commits](https://github.com/paritytech/parity-scale-codec/commits) --- updated-dependencies: - dependency-name: parity-scale-codec dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++++++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f9f90a23b..0d29d42c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3240,6 +3240,26 @@ dependencies = [ "tiny-keccak", ] +[[package]] +name = "const_format" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd" +dependencies = [ + "const_format_proc_macros", +] + +[[package]] +name = "const_format_proc_macros" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + [[package]] name = "constant_time_eq" version = "0.1.5" @@ -10792,16 +10812,18 @@ dependencies = [ [[package]] name = "parity-scale-codec" -version = "3.6.12" +version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +checksum = "b91c2d9a6a6004e205b7e881856fb1a0f5022d382acc2c01b52185f7b6f65997" dependencies = [ "arrayvec 0.7.6", "bitvec", "byte-slice-cast", "bytes", + "const_format", "impl-trait-for-tuples", "parity-scale-codec-derive", + "rustversion", "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 1b35991ab..91d635c24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -322,7 +322,7 @@ log = { version = "0.4.25", default-features = false } num-bigint = { version = "0.4.6", default-features = false } num-traits = { version = "0.2.19", default-features = false } num_enum = { version = "0.7.3", default-features = false } -parity-scale-codec = { version = "3.6.12", default-features = false } +parity-scale-codec = { version = "3.7.2", default-features = false } paste = { version = "1.0.15" } primitive-types = { version = "0.12.2", default-features = false } proc-macro2 = { version = "1.0.89" }