update heed to latest version

This commit is contained in:
Tamo 2024-05-16 16:10:55 +02:00
parent 7e251b43d4
commit c9ac7f2e7e
13 changed files with 43 additions and 42 deletions

View file

@ -49,7 +49,7 @@ pub fn open_auth_store_env(path: &Path) -> milli::heed::Result<milli::heed::Env>
let mut options = EnvOpenOptions::new();
options.map_size(AUTH_STORE_SIZE); // 1GB
options.max_dbs(2);
options.open(path)
unsafe { options.open(path) }
}
impl HeedAuthStore {