1596: Update milli and tokenizer version: fix panic during indexation r=curquiza a=curquiza

Fixes #1590 

Co-authored-by: Clémentine Urquizar <clementine@meilisearch.com>
This commit is contained in:
bors[bot] 2021-08-18 13:44:30 +00:00 committed by GitHub
commit 3e27d5e885
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@ -1699,8 +1699,8 @@ dependencies = [
[[package]]
name = "meilisearch-tokenizer"
version = "0.2.4"
source = "git+https://github.com/meilisearch/Tokenizer.git?tag=v0.2.4#135d08dce465a756abaf6a1bcad70f315bda99b9"
version = "0.2.5"
source = "git+https://github.com/meilisearch/tokenizer.git?tag=v0.2.5#c0b5cf741ed9485147f2cbe523f2214d4fa4c395"
dependencies = [
"character_converter",
"cow-utils",
@ -1740,8 +1740,8 @@ dependencies = [
[[package]]
name = "milli"
version = "0.10.0"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.10.0#51581d14f859b01411b586475f48b54eb81b7b1d"
version = "0.10.1"
source = "git+https://github.com/meilisearch/milli.git?tag=v0.10.1#198c416bd8dd1813d5e6efe37cc0e6273185a112"
dependencies = [
"bstr",
"byteorder",

View File

@ -49,9 +49,9 @@ itertools = "0.10.0"
log = "0.4.8"
main_error = "0.1.0"
meilisearch-error = { path = "../meilisearch-error" }
meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.4" }
meilisearch-tokenizer = { git = "https://github.com/meilisearch/tokenizer.git", tag = "v0.2.5" }
memmap = "0.7.0"
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.10.0" }
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.10.1" }
mime = "0.3.16"
num_cpus = "1.13.0"
once_cell = "1.5.2"