Add lru crate to milli again

This commit is contained in:
Louis Dureuil 2025-03-13 11:11:54 +01:00
parent 7df5715d39
commit d9111fe8ce
No known key found for this signature in database
2 changed files with 11 additions and 0 deletions

10
Cargo.lock generated
View File

@ -3498,6 +3498,15 @@ version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
[[package]]
name = "lru"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
dependencies = [
"hashbrown 0.15.2",
]
[[package]]
name = "lzma-rs"
version = "0.3.0"
@ -3778,6 +3787,7 @@ dependencies = [
"json-depth-checker",
"levenshtein_automata",
"liquid",
"lru",
"maplit",
"md5",
"meili-snap",

View File

@ -110,6 +110,7 @@ utoipa = { version = "5.3.1", features = [
"time",
"openapi_extensions",
] }
lru = "0.13.0"
[dev-dependencies]
mimalloc = { version = "0.1.43", default-features = false }