Skip to content

Commit 49d5dd7

Browse files
bumped to libsqlite3-sys=0.30.1 (#3382)
1 parent e089d2f commit 49d5dd7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ criterion = { version = "0.5.1", features = ["async_tokio"] }
183183
# even when SQLite isn't the intended test target, and fail if the build environment is not set up for compiling C code.
184184
[target.'cfg(sqlite_test_sqlcipher)'.dev-dependencies]
185185
# Enable testing with SQLCipher if specifically requested.
186-
libsqlite3-sys = { version = "0.28", features = ["bundled-sqlcipher"] }
186+
libsqlite3-sys = { version = "0.30.1", features = ["bundled-sqlcipher"] }
187187

188188
#
189189
# Any

sqlx-sqlite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ serde = { version = "1.0.145", features = ["derive"], optional = true }
4646
regex = { version = "1.5.5", optional = true }
4747

4848
[dependencies.libsqlite3-sys]
49-
version = "0.28.0"
49+
version = "0.30.1"
5050
default-features = false
5151
features = [
5252
"pkg-config",

sqlx-sqlite/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
//! using to prevent a `cargo update` from breaking things, e.g.:
1616
//!
1717
//! ```toml
18-
//! sqlx = { version = "=0.7.0", features = ["sqlite"] }
19-
//! rusqlite = "=0.28.0"
18+
//! sqlx = { version = "=0.8.1", features = ["sqlite"] }
19+
//! rusqlite = "=0.32.1"
2020
//! ```
2121
//!
2222
//! and then upgrade these crates in lockstep when necessary.

0 commit comments

Comments
 (0)