From 46b8ebcab4982104f227f01ddb73b80c378fabf2 Mon Sep 17 00:00:00 2001 From: Tamo Date: Wed, 7 Sep 2022 20:37:15 +0200 Subject: [PATCH] fix the file store --- Cargo.lock | 1 + index-scheduler/Cargo.toml | 1 + index-scheduler/src/lib.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index f7bf0807c..1687f3b66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1661,6 +1661,7 @@ dependencies = [ "actix-rt", "anyhow", "bincode", + "csv", "derivative", "either", "fst", diff --git a/index-scheduler/Cargo.toml b/index-scheduler/Cargo.toml index 536c8f0f1..d5ce1b19a 100644 --- a/index-scheduler/Cargo.toml +++ b/index-scheduler/Cargo.toml @@ -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" diff --git a/index-scheduler/src/lib.rs b/index-scheduler/src/lib.rs index 485946014..d2685c49d 100644 --- a/index-scheduler/src/lib.rs +++ b/index-scheduler/src/lib.rs @@ -1,4 +1,5 @@ mod batch; +mod document_formats; pub mod error; pub mod index; pub mod task;