mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-06 20:56:31 +00:00
Support typos with a levenshtein automata
This commit is contained in:
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -361,6 +361,15 @@ version = "1.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||||
|
||||
[[package]]
|
||||
name = "levenshtein_automata"
|
||||
version = "0.2.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f44db4199cdb049b494a92d105acbfa43c25b3925e33803923ba9580b7bc9e1a"
|
||||
dependencies = [
|
||||
"fst",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.70"
|
||||
@ -403,6 +412,7 @@ dependencies = [
|
||||
"fxhash",
|
||||
"heed",
|
||||
"jemallocator",
|
||||
"levenshtein_automata",
|
||||
"memmap",
|
||||
"oxidized-mtbl",
|
||||
"rayon",
|
||||
|
Reference in New Issue
Block a user