From a2287c22fe57b3084b48f8587ae5fb4c4afe4ea0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Sep 2025 18:04:30 +0000 Subject: [PATCH] chore(deps): bump uuid from 1.15.1 to 1.18.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.15.1 to 1.18.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.18.1) --- updated-dependencies: - dependency-name: uuid dependency-version: 1.18.1 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..4355edb 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.1", ] [[package]] @@ -3446,7 +3446,7 @@ dependencies = [ "tokio-test", "toml 0.8.20", "tracing", - "uuid 1.15.1", + "uuid 1.18.1", "which", ] @@ -9570,7 +9570,7 @@ dependencies = [ "smallvec", "tagptr", "thiserror 1.0.69", - "uuid 1.15.1", + "uuid 1.18.1", ] [[package]] @@ -18055,11 +18055,13 @@ dependencies = [ [[package]] name = "uuid" -version = "1.15.1" +version = "1.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" +checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" 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"