Skip to content

Commit

Permalink
Update Rust crate uuid to 1.7.0 (#3908)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 19, 2024
1 parent 6c6620a commit a7caf54
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion apps/hash-graph/bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion apps/hash-graph/bins/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion apps/hash-graph/libs/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion libs/@local/hash-authorization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion libs/@local/hash-graph-types/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion tests/hash-graph-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a7caf54

Please sign in to comment.