From 2caa6d9c20ba721b58c96c9796287c88f080b148 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Apr 2026 01:46:37 +0000 Subject: [PATCH] chore(deps): bump the rust-minor group with 2 updates Bumps the rust-minor group with 2 updates: [uuid](https://github.com/uuid-rs/uuid) and [subprocess](https://github.com/hniksic/rust-subprocess). Updates `uuid` from 1.22.0 to 1.23.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.22.0...v1.23.0) Updates `subprocess` from 1.0.0 to 1.0.3 - [Commits](https://github.com/hniksic/rust-subprocess/compare/release/1.0.0...release/1.0.3) --- updated-dependencies: - dependency-name: uuid dependency-version: 1.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-minor - dependency-name: subprocess dependency-version: 1.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- adapters/Cargo.toml | 2 +- cli/Cargo.toml | 2 +- integration/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5536201..4aabd56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3709,9 +3709,9 @@ dependencies = [ [[package]] name = "subprocess" -version = "1.0.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98e067360c7f5a302e35c9f9cd24cb583c378fbedc73d0237284dbdd0650fcc5" +checksum = "e5b79b2cfda2d2dd2ef0640364f88f55f0ee895b1fdac29ab010b8c8ba1eb303" dependencies = [ "libc", "winapi", @@ -4478,9 +4478,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", "js-sys", diff --git a/adapters/Cargo.toml b/adapters/Cargo.toml index da61b24..a119d74 100644 --- a/adapters/Cargo.toml +++ b/adapters/Cargo.toml @@ -21,7 +21,7 @@ url = "2.5" base64 = "0.22" tracing = "0.1" chrono = { version = "0.4", features = ["serde"] } -uuid = { version = "1.6", features = ["v4"] } +uuid = { version = "1.23", features = ["v4"] } hmac = "0.12" sha2 = "0.10" hex = "0.4" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4bb7c60..5a86dfe 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -70,7 +70,7 @@ reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-feature regex = "1.10" # UUID generation -uuid = { version = "1.10", features = ["v4", "serde"] } +uuid = { version = "1.23", features = ["v4", "serde"] } # SHA256 for checksums sha2 = "0.10" diff --git a/integration/Cargo.toml b/integration/Cargo.toml index b46b0e7..b3ed59d 100644 --- a/integration/Cargo.toml +++ b/integration/Cargo.toml @@ -42,7 +42,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } chrono = { version = "0.4", features = ["serde"] } # UUID for test data generation -uuid = { version = "1.6", features = ["v4"] } +uuid = { version = "1.23", features = ["v4"] } # Testcontainers for spinning up Docker containers testcontainers = { version = "0.27", features = ["watchdog"] }