Skip to content

Commit 3979106

Browse files
committed
Upgrade to sqlx 0.8.3
This removes the git override we had
1 parent 3f66c1a commit 3979106

File tree

3 files changed

+30
-28
lines changed

3 files changed

+30
-28
lines changed

Cargo.lock

Lines changed: 27 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ features = ["preserve_order"]
292292

293293
# SQL database support
294294
[workspace.dependencies.sqlx]
295-
version = "0.8.2"
295+
version = "0.8.3"
296296
features = [
297297
"runtime-tokio",
298298
"tls-rustls-aws-lc-rs",
@@ -405,10 +405,3 @@ rayon.opt-level = 3
405405
regalloc2.opt-level = 3
406406
sha2.opt-level = 3
407407
sqlx-macros.opt-level = 3
408-
409-
[patch.crates-io]
410-
sqlx = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
411-
sqlx-core = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
412-
sqlx-macros = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
413-
sqlx-macros-core = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }
414-
sqlx-postgres = { git = "https://github.com/launchbadge/sqlx.git", branch = "main" }

deny.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ skip = [
5858
{ name = "regex-automata", version = "0.1.10" }, # ^
5959
{ name = "regex-automata", version = "0.2.0" }, # icu_list depends on this old version
6060
{ name = "indexmap", version = "1.9.3" }, # schemars depends on this old version
61-
{ name = "hashbrown" }, # Too many versions :(
61+
{ name = "hashbrown", version = "0.12.3" }, # schemars -> indexmap depends on this old version
62+
{ name = "hashbrown", version = "0.14.5" }, # a few crates depend on this old version
6263
# a few dependencies depend on the 1.x version of thiserror
6364
{ name = "thiserror", version = "1.0.69" },
6465
{ name = "thiserror-impl", version = "1.0.69" },
@@ -81,4 +82,3 @@ deny = ["oldtime"]
8182
unknown-registry = "warn"
8283
unknown-git = "warn"
8384
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
84-
allow-git = ["https://github.com/launchbadge/sqlx.git"]

0 commit comments

Comments
 (0)