Use bumparaw-collections in Meilisearch/milli

This commit is contained in:
Kerollmops 2024-12-10 11:12:27 +01:00
parent 1995040846
commit 89637bcaaf
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
15 changed files with 78 additions and 70 deletions

View file

@ -24,7 +24,7 @@ flate2 = "1.0.30"
fst = "0.4.7"
memmap2 = "0.9.4"
milli = { path = "../milli" }
raw-collections = { git = "https://github.com/meilisearch/raw-collections.git", version = "0.1.0" }
bumparaw-collections = "0.1.1"
roaring = { version = "0.10.7", features = ["serde"] }
serde = { version = "1.0.204", features = ["derive"] }
serde-cs = "0.2.4"

View file

@ -4,10 +4,10 @@ use std::io::{self, BufWriter};
use std::marker::PhantomData;
use bumpalo::Bump;
use bumparaw_collections::RawMap;
use memmap2::Mmap;
use milli::documents::Error;
use milli::Object;
use raw_collections::RawMap;
use serde::de::{SeqAccess, Visitor};
use serde::{Deserialize, Deserializer};
use serde_json::error::Category;