From 8f864ca8fba24492c75ab0f36b45b18776e1807f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 09:25:15 +0000 Subject: [PATCH] deps(rust): bump uuid from 1.18.1 to 1.20.0 in /rust Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.18.1 to 1.20.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.18.1...v1.20.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 1.20.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- rust/Cargo.lock | 6 +++--- rust/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index b2272b0..da6ac97 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -870,13 +870,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.18.1" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" +checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f" dependencies = [ "getrandom", "js-sys", - "serde", + "serde_core", "wasm-bindgen", ] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index b987420..be99783 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -17,7 +17,7 @@ serde_json = "1.0" thiserror = "2.0" regex = "1.10" chrono = { version = "0.4", features = ["serde"] } -uuid = { version = "1.6", features = ["v4", "serde"] } +uuid = { version = "1.20", features = ["v4", "serde"] } url = { version = "2.5", features = ["serde"] } base64 = "0.21" indexmap = { version = "2.13", features = ["serde"] }