From ae115f5f4645e7d796893abfa8fbc1657040decb Mon Sep 17 00:00:00 2001 From: Caleb Hattingh Date: Thu, 19 Mar 2026 01:06:55 +0100 Subject: [PATCH] fix: allow libsqlite3-sys >=0.28 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 74c352b..698e5fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ metrics = "0.24" # SQLite support (optional, bundled) sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate", "chrono"], optional = true } -libsqlite3-sys = { version = "0.28", features = ["bundled"], optional = true } +libsqlite3-sys = { version = ">=0.28", features = ["bundled"], optional = true } [dev-dependencies] # Used in tests/examples