From 9058188a3361951eadf70e656ce7c2bad57859ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 06:47:55 +0000 Subject: [PATCH] chore(deps): bump uuid from 1.15.1 to 1.18.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.15.1 to 1.18.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.18.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 1.18.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 +++++++----- code-exec/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 489680c..3e0328c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1933,7 +1933,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "tracing", - "uuid 1.15.1", + "uuid 1.18.0", ] [[package]] @@ -3446,7 +3446,7 @@ dependencies = [ "tokio-test", "toml 0.8.20", "tracing", - "uuid 1.15.1", + "uuid 1.18.0", "which", ] @@ -9570,7 +9570,7 @@ dependencies = [ "smallvec", "tagptr", "thiserror 1.0.69", - "uuid 1.15.1", + "uuid 1.18.0", ] [[package]] @@ -18055,11 +18055,13 @@ dependencies = [ [[package]] name = "uuid" -version = "1.15.1" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" +checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be" dependencies = [ "getrandom 0.3.1", + "js-sys", + "wasm-bindgen", ] [[package]] diff --git a/code-exec/Cargo.toml b/code-exec/Cargo.toml index 834cdc3..8340c83 100644 --- a/code-exec/Cargo.toml +++ b/code-exec/Cargo.toml @@ -17,7 +17,7 @@ tempfile = "3.10" which = "6.0" regex = "1.10" toml = "0.8" -uuid = { version = "1.7", features = ["v4"] } +uuid = { version = "1.18", features = ["v4"] } reqwest = { version = "0.11", features = ["json"] } nix = { version = "0.29.0", features = ["user", "resource"] } axum = "0.8.1"