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", 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"] }