diff --git a/Cargo.lock b/Cargo.lock index 958d4ecfb6..7a77b0cf3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -672,9 +672,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.0.90" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" +checksum = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f" [[package]] name = "cfg-if" @@ -1855,9 +1855,9 @@ dependencies = [ [[package]] name = "libsqlite3-sys" -version = "0.28.0" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f" +checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" dependencies = [ "cc", "pkg-config", diff --git a/Cargo.toml b/Cargo.toml index c6ffe9ec34..b73630eac0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/sqlx-sqlite/Cargo.toml b/sqlx-sqlite/Cargo.toml index d60f5ea9b2..c530d578fe 100644 --- a/sqlx-sqlite/Cargo.toml +++ b/sqlx-sqlite/Cargo.toml @@ -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", diff --git a/sqlx-sqlite/src/lib.rs b/sqlx-sqlite/src/lib.rs index 9f0cb376ad..0951084bc9 100644 --- a/sqlx-sqlite/src/lib.rs +++ b/sqlx-sqlite/src/lib.rs @@ -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.