From 7b8f672970f66af58f6d43abe7e021db89e44104 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Mar 2025 04:21:38 +0000 Subject: [PATCH] chore(deps): bump const-oid from 0.9.6 to 0.10.0 Bumps [const-oid](https://github.com/RustCrypto/formats) from 0.9.6 to 0.10.0. - [Commits](https://github.com/RustCrypto/formats/compare/const-oid/v0.9.6...const-oid/v0.10.0) --- updated-dependencies: - dependency-name: const-oid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++---- modules/llrt_crypto/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5aa9f27c7b..9f625e2337 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -489,6 +489,12 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +[[package]] +name = "const-oid" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1cb3c4a0d3776f7535c32793be81d6d5fec0d48ac70955d9834e643aa249a52f" + [[package]] name = "constcat" version = "0.6.0" @@ -742,7 +748,7 @@ version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" dependencies = [ - "const-oid", + "const-oid 0.9.6", "der_derive", "pem-rfc7468", "zeroize", @@ -766,7 +772,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer", - "const-oid", + "const-oid 0.9.6", "crypto-common", "subtle", ] @@ -1757,7 +1763,7 @@ dependencies = [ "aes-gcm", "aes-kw", "cbc", - "const-oid", + "const-oid 0.10.0", "crc32c", "crc32fast", "ctr", @@ -2834,7 +2840,7 @@ version = "0.9.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519" dependencies = [ - "const-oid", + "const-oid 0.9.6", "digest", "num-bigint-dig", "num-integer", diff --git a/modules/llrt_crypto/Cargo.toml b/modules/llrt_crypto/Cargo.toml index d4d00ab713..876ab66185 100644 --- a/modules/llrt_crypto/Cargo.toml +++ b/modules/llrt_crypto/Cargo.toml @@ -49,7 +49,7 @@ ecdsa = "0.16" spki = { version = "0.7", features = ["std"] } pkcs8 = { version = "0.10", features = ["std"] } der = { version = "0.7", features = ["derive"] } -const-oid = { version = "0.9", features = ["db"] } +const-oid = { version = "0.10", features = ["db"] } [target.'cfg(target_os = "windows")'.dependencies] memchr = "2"