From f3ce6a91ba0d19376bb843038b7304096a982c9e Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 16 Sep 2024 14:23:17 +0300 Subject: [PATCH] test: Switch to bundled SQLite for rusqlite We're seeing build errors on Windows so let's see if this fixes it. --- test/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Cargo.toml b/test/Cargo.toml index 7c05dae4b..095c7f544 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -19,7 +19,7 @@ dirs = "5.0.1" env_logger = "0.10.1" limbo_core = { path = "../core" } rustyline = "12.0.0" -rusqlite = "0.29.0" +rusqlite = { version = "0.29", features = ["bundled"] } [dev-dependencies] rstest = "0.18.2"