From a150b8aa9c3bfa140023ff21c6d10ec1c7358e6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 03:12:15 +0000 Subject: [PATCH] Bump the minor-changes group with 2 updates Bumps the minor-changes group with 2 updates: [const-decoder](https://github.com/slowli/const-decoder) and [once_cell](https://github.com/matklad/once_cell). Updates `const-decoder` from 0.3.0 to 0.4.0 - [Changelog](https://github.com/slowli/const-decoder/blob/master/CHANGELOG.md) - [Commits](https://github.com/slowli/const-decoder/compare/v0.3.0...v0.4.0) Updates `once_cell` from 1.19.0 to 1.20.1 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.19.0...v1.20.1) --- updated-dependencies: - dependency-name: const-decoder dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-changes - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-changes ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++++++++++++++++++++++---- Cargo.toml | 2 +- e2e-tests/no-std/Cargo.toml | 4 ++-- 3 files changed, 25 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 635033b..f11f418 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -238,11 +238,20 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" +[[package]] +name = "compile-fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bed69047ed42e52c7e38d6421eeb8ceefb4f2a2b52eed59137f7bad7908f6800" + [[package]] name = "const-decoder" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5241cd7938b1b415942e943ea96f615953d500b50347b505b0b507080bad5a6f" +checksum = "b381abde2cdc1bc3817e394b24e05667a2dc89f37570cbd34d9c397d99e56e3f" +dependencies = [ + "compile-fmt", +] [[package]] name = "const-default" @@ -1068,9 +1077,12 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.19.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1" +dependencies = [ + "portable-atomic", +] [[package]] name = "oorandom" @@ -1157,6 +1169,12 @@ dependencies = [ "plotters-backend", ] +[[package]] +name = "portable-atomic" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" + [[package]] name = "ppv-lite86" version = "0.2.17" diff --git a/Cargo.toml b/Cargo.toml index ef1347e..eb340e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ default-features = false [dev-dependencies] assert_matches = "1.3" -const-decoder = "0.3.0" +const-decoder = "0.4.0" criterion = "0.5.1" doc-comment = "0.3.3" hex-buffer-serde = "0.4.0" diff --git a/e2e-tests/no-std/Cargo.toml b/e2e-tests/no-std/Cargo.toml index e0ddd1e..9b6ed05 100644 --- a/e2e-tests/no-std/Cargo.toml +++ b/e2e-tests/no-std/Cargo.toml @@ -11,7 +11,7 @@ publish = false [dependencies] anyhow = { version = "1.0.89", default-features = false } chrono = { version = "0.4.38", default-features = false } -const-decoder = "0.3.0" +const-decoder = "0.4.0" serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } # Cortex-M dependencies. @@ -23,7 +23,7 @@ panic-halt = "0.2.0" # RSA-specific dependencies. Everything besides `rsa` is needed to set up an RNG. getrandom = { version = "0.2", features = ["custom"], optional = true } -once_cell = { version = "1.19.0", default-features = false, optional = true } +once_cell = { version = "1.20.1", default-features = false, optional = true } rand_chacha = { version = "0.3.1", default-features = false, optional = true } rsa = { version = "0.9", default-features = false, optional = true }