diff --git a/apps/hash-graph/bench/Cargo.toml b/apps/hash-graph/bench/Cargo.toml index 4f926ed9b40..29ca5b78121 100644 --- a/apps/hash-graph/bench/Cargo.toml +++ b/apps/hash-graph/bench/Cargo.toml @@ -22,7 +22,7 @@ serde_json = "1.0.91" tokio = { version = "1.25.0", features = ["rt-multi-thread", "macros"] } tokio-postgres = { version = "0.7.7", default-features = false } type-system = { git = "https://github.com/blockprotocol/blockprotocol", rev = "2ea406f" } -uuid = { version = "1.2.2", features = ["v4", "serde"] } +uuid = { version = "1.3.0", features = ["v4", "serde"] } [[bench]] # TODO - Rename, lib.rs, main.rs, hash_graph_benchmark.rs? diff --git a/apps/hash-graph/bin/cli/Cargo.toml b/apps/hash-graph/bin/cli/Cargo.toml index 99cc8bfe71b..4007ef86724 100644 --- a/apps/hash-graph/bin/cli/Cargo.toml +++ b/apps/hash-graph/bin/cli/Cargo.toml @@ -25,7 +25,7 @@ tokio-postgres = { version = "0.7.7", default-features = false } tokio-serde = { version = "0.8", features = ["messagepack"], optional = true } tracing = "0.1.37" type-system = { git = "https://github.com/blockprotocol/blockprotocol", rev = "2ea406f" } -uuid = "1.2.2" +uuid = "1.3.0" [features] diff --git a/apps/hash-graph/lib/graph/Cargo.toml b/apps/hash-graph/lib/graph/Cargo.toml index fd348eb6b1f..964f91eee5f 100644 --- a/apps/hash-graph/lib/graph/Cargo.toml +++ b/apps/hash-graph/lib/graph/Cargo.toml @@ -35,7 +35,7 @@ opentelemetry = { version = "0.18.0", features = ["rt-tokio"] } opentelemetry-otlp = "0.11.0" tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] } type-system = { git = "https://github.com/blockprotocol/blockprotocol", rev = "2ea406f" } -uuid = { version = "1.2.2", features = ["v4", "serde"] } +uuid = { version = "1.3.0", features = ["v4", "serde"] } utoipa = { version = "3.0.1", features = ["uuid"] } include_dir = "0.7.3" refinery = { version = "0.8", features = ["tokio-postgres"] }