From f4ef93399f74c1b245bfaae8dd5d85b5382a3143 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 08:07:38 +0000 Subject: [PATCH 1/2] chore(deps): bump uuid from 1.24.0 to 1.25.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.24.0 to 1.25.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.24.0...1.25.0) --- updated-dependencies: - dependency-name: uuid dependency-version: 1.25.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e9bcbf6..e838fbb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4209,9 +4209,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.24.0" +version = "1.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" +checksum = "f053576934f05a761a402421fbbe3d425d9366f75f978806a037b3ca481abecc" dependencies = [ "getrandom 0.4.2", "js-sys", From 10dac5ea82049eaba72c345557b6ac3c74fec399 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Fri, 28 Aug 2026 10:31:13 +0100 Subject: [PATCH 2/2] build(deps): update uuid dependency to 1.25.0 in Cargo.toml --- Cargo.toml | 2 +- src/interfaces/graphql/Cargo.toml | 2 +- src/interfaces/grpc/Cargo.toml | 2 +- src/interfaces/rest/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d113a867..3bfe87ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ blake3 = "1" tiny-keccak = { version = "2", features = ["shake"] } # UUID -uuid = { version = "1", features = ["v4", "serde"] } +uuid = { version = "1.25.0", features = ["v4", "serde"] } # Lazy statics lazy_static = "1" diff --git a/src/interfaces/graphql/Cargo.toml b/src/interfaces/graphql/Cargo.toml index 00c0e505..26a962d3 100644 --- a/src/interfaces/graphql/Cargo.toml +++ b/src/interfaces/graphql/Cargo.toml @@ -48,7 +48,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # UUID generation -uuid = { version = "1.11", features = ["v4", "serde"] } +uuid = { version = "1.25.0", features = ["v4", "serde"] } [dev-dependencies] reqwest = { version = "0.12", features = ["json"] } diff --git a/src/interfaces/grpc/Cargo.toml b/src/interfaces/grpc/Cargo.toml index 7c79190e..fb1332f2 100644 --- a/src/interfaces/grpc/Cargo.toml +++ b/src/interfaces/grpc/Cargo.toml @@ -40,7 +40,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # UUID -uuid = { version = "1.11", features = ["v4", "serde"] } +uuid = { version = "1.25.0", features = ["v4", "serde"] } # Async trait support async-trait = "0.1" diff --git a/src/interfaces/rest/Cargo.toml b/src/interfaces/rest/Cargo.toml index df07ba53..2c17730f 100644 --- a/src/interfaces/rest/Cargo.toml +++ b/src/interfaces/rest/Cargo.toml @@ -36,7 +36,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # UUID -uuid = { version = "1.11", features = ["v4", "serde"] } +uuid = { version = "1.25.0", features = ["v4", "serde"] } # OpenAPI utoipa = { version = "5.3", features = ["axum_extras"] }