From 9b7858fb90c3e3df3541c46672a89563006d5ddf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Mon, 2 Sep 2024 15:21:59 +0200 Subject: [PATCH] Expose the new indexer --- milli/src/update/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milli/src/update/mod.rs b/milli/src/update/mod.rs index c5e9272de..772a73236 100644 --- a/milli/src/update/mod.rs +++ b/milli/src/update/mod.rs @@ -18,7 +18,7 @@ pub(crate) mod del_add; pub(crate) mod facet; mod index_documents; mod indexer_config; -mod new; +pub mod new; mod settings; mod update_step; mod word_prefix_docids;