From 8a2b499fc7e00e841c56d23ac41f4d587b728a50 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 18 Feb 2025 23:21:52 -0500 Subject: Upgrade sqlx to latest. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We can't quite update rusqlite to latest as well, as it uses a slightly newer libsqlite3-sys crate. I made sure this pair of versions is valid: % cargo tree --invert libsqlite3-sys libsqlite3-sys v0.30.1 ├── rusqlite v0.32.1 │ └── pilcrow v0.1.0 (/Users/owen/Projects/grimoire.ca/pilcrow) └── sqlx-sqlite v0.8.3 └── sqlx v0.8.3 └── pilcrow v0.1.0 (/Users/owen/Projects/grimoire.ca/pilcrow) libsqlite3-sys v0.30.1 └── sqlx-sqlite v0.8.3 └── sqlx-macros-core v0.8.3 └── sqlx-macros v0.8.3 (proc-macro) └── sqlx v0.8.3 (*) As both sqlx and rusqlite resolve to use the same version of libsqlite3-sys, we're fine. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index aa0583f..86549b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ serde = { version = "1.0.217", features = ["derive"] } serde_json = "1.0.138" # Pinned to maintain libsqlite3 version match between this and rusqlite. See # also: -sqlx = { version = "=0.8.2", features = ["chrono", "runtime-tokio", "sqlite"] } +sqlx = { version = "=0.8.3", features = ["chrono", "runtime-tokio", "sqlite"] } thiserror = "1.0.69" tokio = { version = "1.43.0", features = ["rt", "macros", "rt-multi-thread"] } tokio-stream = { version = "0.1.17", features = ["sync"] } -- cgit v1.2.3