diff --git a/Cargo.lock b/Cargo.lock index b9e2cc53d24..890f7ace289 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3839,9 +3839,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" +checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" dependencies = [ "getrandom", "serde", diff --git a/Cargo.toml b/Cargo.toml index e0081653ea3..328a78b58ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ tokio-util = { version = "0.7.10", default-features = false } tracing = "0.1.40" utoipa = "4.2.0" url = { version = "2.5.0", default-features = false } -uuid = { version = "1.6.1", default-features = false } +uuid = { version = "1.7.0", default-features = false } [profile.production] inherits = "release" diff --git a/apps/hash-graph/bench/Cargo.toml b/apps/hash-graph/bench/Cargo.toml index a60bf7c4562..e41e58dc549 100644 --- a/apps/hash-graph/bench/Cargo.toml +++ b/apps/hash-graph/bench/Cargo.toml @@ -27,7 +27,7 @@ serde = { version = "1.0.195", features = ["derive"] } serde_json = "1.0.111" tokio = { workspace = true, features = ["macros"] } tokio-postgres = { version = "0.7.10", default-features = false } -uuid = { version = "1.6.1", features = ["v4", "serde"] } +uuid = { version = "1.7.0", features = ["v4", "serde"] } [[bench]] name = "read_scaling" diff --git a/apps/hash-graph/bins/cli/Cargo.toml b/apps/hash-graph/bins/cli/Cargo.toml index cb1b6b9f10d..53f46f046b3 100644 --- a/apps/hash-graph/bins/cli/Cargo.toml +++ b/apps/hash-graph/bins/cli/Cargo.toml @@ -37,7 +37,7 @@ tokio-postgres = { version = "0.7.10", default-features = false } tokio-serde = { version = "0.8", features = ["json"] } tokio-util = { workspace = true, features = ["codec"] } tracing = { workspace = true } -uuid = "1.6.1" +uuid = "1.7.0" [features] test-server = ["graph-api/test-server"] diff --git a/apps/hash-graph/libs/api/Cargo.toml b/apps/hash-graph/libs/api/Cargo.toml index 79c8ad48d72..0d985c08fcb 100644 --- a/apps/hash-graph/libs/api/Cargo.toml +++ b/apps/hash-graph/libs/api/Cargo.toml @@ -42,7 +42,7 @@ tower-http = { version = "0.5.1", features = ["trace"] } tracing = { workspace = true } tracing-opentelemetry = "0.22.0" utoipa = "4.2.0" -uuid = "1.6.1" +uuid = "1.7.0" [features] test-server = ["dep:tokio", "dep:tokio-postgres", "dep:tokio-util", "dep:codec"] diff --git a/libs/@local/hash-authorization/Cargo.toml b/libs/@local/hash-authorization/Cargo.toml index b068fe00907..c6f29376532 100644 --- a/libs/@local/hash-authorization/Cargo.toml +++ b/libs/@local/hash-authorization/Cargo.toml @@ -22,7 +22,7 @@ serde_plain = "1.0.2" reqwest = { version = "0.11.23", default-features = false, features = ["json", "stream"] } tokio-util = { version ="0.7.10", features = ["io"] } -uuid = { version = "1.6.1", default-features = false, features = ["v5"] } +uuid = { version = "1.7.0", default-features = false, features = ["v5"] } utoipa = { version = "4.2.0", optional = true } diff --git a/libs/@local/hash-graph-types/rust/Cargo.toml b/libs/@local/hash-graph-types/rust/Cargo.toml index c7e95ab376d..bce29a0a139 100644 --- a/libs/@local/hash-graph-types/rust/Cargo.toml +++ b/libs/@local/hash-graph-types/rust/Cargo.toml @@ -17,7 +17,7 @@ serde_json = { version = "1.0.111" } utoipa = { version = "4.2.0", optional = true } postgres-types = { version = "0.2.6", default-features = false, features = ["derive", "with-uuid-1", "with-serde_json-1"], optional = true } time = { version = "0.3.31", default-features = false, features = ["serde", "parsing", "formatting", "macros"] } -uuid = { version = "1.6.1", default-features = false, features = ["serde"] } +uuid = { version = "1.7.0", default-features = false, features = ["serde"] } [dev-dependencies] graph-test-data = { path = "../../../../tests/hash-graph-test-data/rust" } diff --git a/tests/hash-graph-integration/Cargo.toml b/tests/hash-graph-integration/Cargo.toml index 6fba27ce178..1755c168d1e 100644 --- a/tests/hash-graph-integration/Cargo.toml +++ b/tests/hash-graph-integration/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0.111" time = "0.3.31" tokio = { version = "1.35.1", default-features = false, features = ["macros"] } tokio-postgres = { version = "0.7.10", default-features = false } -uuid = { version = "1.6.1", features = ["v4", "serde"] } +uuid = { version = "1.7.0", features = ["v4", "serde"] } [[test]] name = "postgres"