fix compilation error

This commit is contained in:
Jonathan de Jong 2024-02-25 21:26:09 +01:00
parent fb8688df45
commit 77a604fa50
6 changed files with 16 additions and 9 deletions

View file

@ -17,6 +17,6 @@ rocksdb = { version = "0.17.0", features = ["multi-threaded-cf", "zstd"], option
persy = { version = "1.2", optional = true }
[features]
default = ["sled", "persy", "heed", "sqlite", "rocksdb"]
default = []
sqlite = ["rusqlite"]
sqlite = ["rusqlite"]

View file

@ -17,7 +17,7 @@ pub type TreeKVIter<'a> = Box<dyn Iterator<Item = (Vec<u8>, KVIter<'a>)> + 'a>;
#[derive(Clone, Copy)]
pub struct Config {
ignore_broken_rows: bool,
pub ignore_broken_rows: bool,
}
pub trait Database {