From b7724c65b88c65e1d47f490310a2bea89211395a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Lecrenier?= Date: Mon, 4 Jul 2022 08:21:42 +0200 Subject: [PATCH] Update cargo.toml to local version of milli --- Cargo.lock | 14 -------------- meilisearch-auth/Cargo.toml | 2 +- meilisearch-lib/Cargo.toml | 2 +- 3 files changed, 2 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9275772b1..b055caf18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -408,15 +408,6 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "199edb7b90631283b10c2422e6a0bc8b7d987bf732995ba1de53b576c97e51a8" -[[package]] -name = "bimap" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc0455254eb5c6964c4545d8bac815e1a1be4f3afe0ae695ea539c12d728d44b" -dependencies = [ - "serde", -] - [[package]] name = "bincode" version = "1.3.3" @@ -1124,7 +1115,6 @@ dependencies = [ [[package]] name = "filter-parser" version = "0.29.3" -source = "git+https://github.com/meilisearch/milli?branch=add-documents-ndjson#cf1c5588ea95f78160ec83de2e95161652cc10e2" dependencies = [ "nom", "nom_locate", @@ -1149,7 +1139,6 @@ dependencies = [ [[package]] name = "flatten-serde-json" version = "0.29.3" -source = "git+https://github.com/meilisearch/milli?branch=add-documents-ndjson#cf1c5588ea95f78160ec83de2e95161652cc10e2" dependencies = [ "serde_json", ] @@ -1662,7 +1651,6 @@ dependencies = [ [[package]] name = "json-depth-checker" version = "0.29.3" -source = "git+https://github.com/meilisearch/milli?branch=add-documents-ndjson#cf1c5588ea95f78160ec83de2e95161652cc10e2" dependencies = [ "serde_json", ] @@ -2190,9 +2178,7 @@ dependencies = [ [[package]] name = "milli" version = "0.29.3" -source = "git+https://github.com/meilisearch/milli?branch=add-documents-ndjson#cf1c5588ea95f78160ec83de2e95161652cc10e2" dependencies = [ - "bimap", "bincode", "bstr", "byteorder", diff --git a/meilisearch-auth/Cargo.toml b/meilisearch-auth/Cargo.toml index a18d2736b..9f930cb94 100644 --- a/meilisearch-auth/Cargo.toml +++ b/meilisearch-auth/Cargo.toml @@ -8,7 +8,7 @@ base64 = "0.13.0" enum-iterator = "0.7.0" hmac = "0.12.1" meilisearch-types = { path = "../meilisearch-types" } -milli = { git = "https://github.com/meilisearch/milli", branch = 'add-documents-ndjson' } +milli = { path = "../../milli/milli" } rand = "0.8.4" serde = { version = "1.0.136", features = ["derive"] } serde_json = { version = "1.0.79", features = ["preserve_order"] } diff --git a/meilisearch-lib/Cargo.toml b/meilisearch-lib/Cargo.toml index a701f839b..ef45c97b2 100644 --- a/meilisearch-lib/Cargo.toml +++ b/meilisearch-lib/Cargo.toml @@ -30,7 +30,7 @@ lazy_static = "1.4.0" log = "0.4.14" meilisearch-auth = { path = "../meilisearch-auth" } meilisearch-types = { path = "../meilisearch-types" } -milli = { git = "https://github.com/meilisearch/milli", branch = 'add-documents-ndjson' } +milli = { path = "../../milli/milli" } mime = "0.3.16" num_cpus = "1.13.1" obkv = "0.2.0"