bumped to libsqlite3-sys=0.30.1 (#3382)

This commit is contained in:
Frank Elsinga
2024-07-28 02:59:00 +02:00
committed by GitHub
parent e089d2fb55
commit 49d5dd7f42
4 changed files with 8 additions and 8 deletions

View File

@@ -46,7 +46,7 @@ serde = { version = "1.0.145", features = ["derive"], optional = true }
regex = { version = "1.5.5", optional = true }
[dependencies.libsqlite3-sys]
version = "0.28.0"
version = "0.30.1"
default-features = false
features = [
"pkg-config",

View File

@@ -15,8 +15,8 @@
//! using to prevent a `cargo update` from breaking things, e.g.:
//!
//! ```toml
//! sqlx = { version = "=0.7.0", features = ["sqlite"] }
//! rusqlite = "=0.28.0"
//! sqlx = { version = "=0.8.1", features = ["sqlite"] }
//! rusqlite = "=0.32.1"
//! ```
//!
//! and then upgrade these crates in lockstep when necessary.