mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
bumped to libsqlite3-sys=0.30.1
(#3382)
This commit is contained in:
parent
e089d2fb55
commit
49d5dd7f42
4 changed files with 8 additions and 8 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue