aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrinity-1686a <trinity@deuxfleurs.fr>2023-06-26 11:15:11 +0200
committertrinity-1686a <trinity@deuxfleurs.fr>2023-06-26 11:15:11 +0200
commite5835704b7905d4ed9cb11e94288ccec092733d2 (patch)
treeeda2475493361ac5698b70d2831673c795a9a370
parent736083063fb4f78e9d00d9f3279f902bd3a6aa0a (diff)
downloadgarage-e5835704b7905d4ed9cb11e94288ccec092733d2.tar.gz
garage-e5835704b7905d4ed9cb11e94288ccec092733d2.zip
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.
-rw-r--r--src/db/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
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" ]