fix the file store

This commit is contained in:
Tamo 2022-09-07 20:37:15 +02:00 committed by Clément Renault
parent fa742f60e8
commit 46b8ebcab4
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View File

@ -1661,6 +1661,7 @@ dependencies = [
"actix-rt",
"anyhow",
"bincode",
"csv",
"derivative",
"either",
"fst",

View File

@ -8,6 +8,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.64"
bincode = "1.3.3"
csv = "1.1.6"
derivative = "2.2.0"
either = { version = "1.6.1", features = ["serde"] }
fst = "0.4.7"

View File

@ -1,4 +1,5 @@
mod batch;
mod document_formats;
pub mod error;
pub mod index;
pub mod task;