Skip to content

Commit

Permalink
fix: version compatability fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohe-Am committed Oct 9, 2024
1 parent 06fc58a commit a320025
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 27 deletions.
42 changes: 21 additions & 21 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 @@ -74,7 +74,7 @@ wasm-bindgen = { version = "0.2.92" }
wasm-bindgen-futures = { version = "0.4" }
wasm-rs-dbg = { version = "0.1.2", default-features = false, features = ["console-error"] }
wasm-bindgen-test = { version = "0.3.0" }
url = { version = "2.5.0" }
url = { version = "2.4.1" }

bson = { version = "2.11.0", features = ["chrono-0_4", "uuid-1"] }
mongodb = { git = "https://github.com/prisma/mongo-rust-driver.git", branch = "RUST-1994/happy-eyeballs" }
Expand Down
11 changes: 7 additions & 4 deletions quaint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ optional = true
branch = "vendored-openssl"

[dependencies.rusqlite]
version = "0.31"
version = "0.32"
features = ["chrono", "column_decltype"]
optional = true

Expand Down Expand Up @@ -155,7 +155,8 @@ features = [
"with-bit-vec-0_6",
]
git = "https://github.com/prisma/rust-postgres"
branch = "pgbouncer-mode"
# branch = "pgbouncer-mode"
rev = "54a490bc"
optional = true

[dependencies.postgres-types]
Expand All @@ -166,12 +167,14 @@ features = [
"with-bit-vec-0_6",
]
git = "https://github.com/prisma/rust-postgres"
branch = "pgbouncer-mode"
# branch = "pgbouncer-mode"
rev = "54a490bc"
optional = true

[dependencies.postgres-native-tls]
git = "https://github.com/prisma/rust-postgres"
branch = "pgbouncer-mode"
# branch = "pgbouncer-mode"
rev = "54a490bc"
optional = true

[dependencies.tokio]
Expand Down
2 changes: 1 addition & 1 deletion query-engine/query-engine-c-abi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ chrono.workspace = true
quaint = { path = "../../quaint", default-features = false, features = [
"sqlite",
] }
rusqlite = "0.31"
rusqlite = "0.32"
uuid.workspace = true
thiserror = "1"
connection-string.workspace = true
Expand Down

0 comments on commit a320025

Please sign in to comment.