From a49c734f53c1223ea47add639107eb3715cd8043 Mon Sep 17 00:00:00 2001 From: Siva Mahadevan Date: Tue, 26 Aug 2025 17:39:15 -0400 Subject: [PATCH] Bump libsqlite3-sys to 0.35.0 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e8279e3148..8e71895bca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -222,13 +222,13 @@ rand_xoshiro = "0.6.0" hex = "0.4.3" tempfile = "3.10.1" criterion = { version = "0.5.1", features = ["async_tokio"] } -libsqlite3-sys = { version = "0.30.1" } +libsqlite3-sys = { version = "0.35.0" } # If this is an unconditional dev-dependency then Cargo will *always* try to build `libsqlite3-sys`, # 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.30.1", features = ["bundled-sqlcipher"] } +libsqlite3-sys = { version = "0.35.0", features = ["bundled-sqlcipher"] } # Common lint settings for the workspace [workspace.lints.clippy]