Skip to content

Commit

Permalink
bumped to libsqlite3-sys=0.30.1 (launchbadge#3382)
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm authored and jrasanen committed Oct 14, 2024
1 parent 365d663 commit 125ff62
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 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 @@ -183,7 +183,7 @@ criterion = { version = "0.5.1", features = ["async_tokio"] }
# even when SQLite isn't the intended test target, and fail if the build environment is not set up for compiling C code.
[target.'cfg(sqlite_test_sqlcipher)'.dev-dependencies]
# Enable testing with SQLCipher if specifically requested.
libsqlite3-sys = { version = "0.28", features = ["bundled-sqlcipher"] }
libsqlite3-sys = { version = "0.30.1", features = ["bundled-sqlcipher"] }

#
# Any
Expand Down
2 changes: 1 addition & 1 deletion sqlx-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions sqlx-sqlite/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 125ff62

Please sign in to comment.