From e5835704b7905d4ed9cb11e94288ccec092733d2 Mon Sep 17 00:00:00 2001 From: trinity-1686a Date: Mon, 26 Jun 2023 11:15:11 +0200 Subject: [PATCH] don't build sqlite by default `bundled-libs` is enabled by default, and causes sqlite to be built too, even if the sqlite backend isn't enabled. --- src/db/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/Cargo.toml b/src/db/Cargo.toml index e3a65857..67a4fd5e 100644 --- a/src/db/Cargo.toml +++ b/src/db/Cargo.toml @@ -34,7 +34,7 @@ mktemp = "0.5" [features] default = [ "sled" ] -bundled-libs = [ "rusqlite/bundled" ] +bundled-libs = [ "rusqlite?/bundled" ] cli = ["clap", "pretty_env_logger"] lmdb = [ "heed" ] sqlite = [ "rusqlite" ]