diff options
author | trinity-1686a <trinity@deuxfleurs.fr> | 2023-06-26 11:15:11 +0200 |
---|---|---|
committer | trinity-1686a <trinity@deuxfleurs.fr> | 2023-06-26 11:15:11 +0200 |
commit | e5835704b7905d4ed9cb11e94288ccec092733d2 (patch) | |
tree | eda2475493361ac5698b70d2831673c795a9a370 /src/db/Cargo.toml | |
parent | 736083063fb4f78e9d00d9f3279f902bd3a6aa0a (diff) | |
download | garage-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.
Diffstat (limited to 'src/db/Cargo.toml')
-rw-r--r-- | src/db/Cargo.toml | 2 |
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" ] |