diff --git a/Cargo.lock b/Cargo.lock index 489680c..f41518d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1933,7 +1933,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "tracing", - "uuid 1.15.1", + "uuid 1.17.0", ] [[package]] @@ -3446,7 +3446,7 @@ dependencies = [ "tokio-test", "toml 0.8.20", "tracing", - "uuid 1.15.1", + "uuid 1.17.0", "which", ] @@ -9570,7 +9570,7 @@ dependencies = [ "smallvec", "tagptr", "thiserror 1.0.69", - "uuid 1.15.1", + "uuid 1.17.0", ] [[package]] @@ -18055,11 +18055,13 @@ dependencies = [ [[package]] name = "uuid" -version = "1.15.1" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0f540e3240398cce6128b64ba83fdbdd86129c16a3aa1a3a252efd66eb3d587" +checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" dependencies = [ "getrandom 0.3.1", + "js-sys", + "wasm-bindgen", ] [[package]] diff --git a/code-exec/Cargo.toml b/code-exec/Cargo.toml index 834cdc3..f664d74 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.17", features = ["v4"] } reqwest = { version = "0.11", features = ["json"] } nix = { version = "0.29.0", features = ["user", "resource"] } axum = "0.8.1"