Skip to content

Commit

Permalink
chore: Use sqlx fork until upstream merge
Browse files Browse the repository at this point in the history
Use a fork of sqlx until support for `?` is merged in # launchbadge/sqlx#3553
  • Loading branch information
philipcristiano committed Oct 31, 2024
1 parent 93073d1 commit badcd53
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 61 deletions.
67 changes: 7 additions & 60 deletions Cargo.lock

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

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ tonic = { version = "0.12.0", features = ["tls", "tls-roots"] }
url = "2.5.0"
signal-hook = "0.3.17"
service_conventions = { version = "0.0.23", features = ["tracing", "oidc", "tracing-http"]}
sqlx = { version = "0.8.0", features = ["runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "chrono", "rust_decimal"] }

# https://github.com/launchbadge/sqlx/pull/3553
sqlx = { git = "https://github.com/philipcristiano/sqlx.git", branch="pglquery-hasarraytype", features = ["runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "chrono", "rust_decimal"] }
# sqlx = { version = "0.8.0", features = ["runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "chrono", "rust_decimal"] }
base64 = "0.22.1"
reqwest = { version = "0.12.4", features = ["rustls-tls", "json"], default-features = false }
uuid = {version = "1.8.0", features = ["v4", "serde"]}
Expand All @@ -46,3 +49,7 @@ chronoutil = "0.2.7"

declare_schema = { version = "0.0.9" }
charts-rs = "0.3.11"

[patch.crates-io]
# https://github.com/launchbadge/sqlx/pull/3553
sqlx = { git = "https://github.com/philipcristiano/sqlx.git", branch="pglquery-hasarraytype", features = ["runtime-tokio", "tls-rustls", "postgres", "macros", "uuid", "chrono", "rust_decimal"] }

0 comments on commit badcd53

Please sign in to comment.