diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-02-18 23:21:52 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-02-18 23:21:52 -0500 |
| commit | 8a2b499fc7e00e841c56d23ac41f4d587b728a50 (patch) | |
| tree | 2e1a3a482f4b432970ebe11f000d6bb314ce569a /Cargo.toml | |
| parent | ae59726ae2c7c2f05cb10c23ec29451cfaef2d90 (diff) | |
Upgrade sqlx to latest.
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.
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: <https://docs.rs/sqlx/latest/sqlx/sqlite/index.html> -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"] } |
