diff --git a/Cargo.lock b/Cargo.lock index 7caf88b9..5e783dbe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1711,9 +1711,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.22.0" +version = "1.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" +checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9" dependencies = [ "getrandom 0.4.2", "rand", diff --git a/Cargo.toml b/Cargo.toml index dbfff42b..ee669b80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -112,7 +112,7 @@ globset = { version = "0.4.16", features = ["simd-accel"], default-features = fa regex = {version = "1.12.3", optional = true, default-features = false } semver = {version = "1.0.25", optional = true, default-features = false } url = { version = "2.5.4", optional = true } -uuid = { version = "1.22.0", default-features = false, features = ["v4", "fast-rng"], optional = true } +uuid = { version = "1.23.0", default-features = false, features = ["v4", "fast-rng"], optional = true } jsonschema = { version = "0.45.0", default-features = false, optional = true } chrono = { version = "0.4.44", optional = true } chrono-tz = { version = "0.10.1", optional = true } diff --git a/bindings/wasm/Cargo.lock b/bindings/wasm/Cargo.lock index 2592fb46..37056758 100644 --- a/bindings/wasm/Cargo.lock +++ b/bindings/wasm/Cargo.lock @@ -1266,9 +1266,9 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" [[package]] name = "uuid" -version = "1.22.0" +version = "1.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" +checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9" dependencies = [ "getrandom 0.4.2", "js-sys", diff --git a/bindings/wasm/Cargo.toml b/bindings/wasm/Cargo.toml index 05afbb3c..94af825b 100644 --- a/bindings/wasm/Cargo.toml +++ b/bindings/wasm/Cargo.toml @@ -47,7 +47,7 @@ wasm-bindgen = "0.2.100" serde-wasm-bindgen = "0.6" # Specify uuid as a mandatory dependency so as to enable `js` feature which is now required # when targeting wasm32-unknown-unknown. -uuid = { version = "1.22.0", default-features = false, features = ["v4", "fast-rng", "js"]} +uuid = { version = "1.23.0", default-features = false, features = ["v4", "fast-rng", "js"]} # Configure getrandom for WebAssembly: 0.2 uses the `js` feature, while 0.3+ use `wasm_js`. # See https://docs.rs/getrandom/latest/getrandom/#webassembly-support getrandom02 = { package = "getrandom", version = "0.2.15", features = ["std", "js"] }