From 352b02de6af70f1ff1bfbd15329120589a0f7337 Mon Sep 17 00:00:00 2001 From: Cody Casterline Date: Sat, 30 Mar 2024 15:59:51 -0700 Subject: [PATCH] Bump libsqlite3-sys to v0.28 (#3148) This includes SQLite v3.45(.1), which includes new JSONB functionality. --- Cargo.toml | 2 +- sqlx-sqlite/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f0139a2e..018d8a2a 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.27", features = ["bundled-sqlcipher"] } +libsqlite3-sys = { version = "0.28", features = ["bundled-sqlcipher"] } # # Any diff --git a/sqlx-sqlite/Cargo.toml b/sqlx-sqlite/Cargo.toml index dd260808..49d0fb09 100644 --- a/sqlx-sqlite/Cargo.toml +++ b/sqlx-sqlite/Cargo.toml @@ -46,7 +46,7 @@ regex = { version = "1.5.5", optional = true } urlencoding = "2.1.3" [dependencies.libsqlite3-sys] -version = "0.27.0" +version = "0.28.0" default-features = false features = [ "pkg-config",