fix(es/loader): Update lru (#3092)

This commit is contained in:
Donny/강동윤 2021-12-22 04:56:49 +09:00 committed by GitHub
parent 726fc6968d
commit 15cbe4fcaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -1129,9 +1129,9 @@ dependencies = [
[[package]]
name = "lru"
version = "0.6.6"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ea2d928b485416e8908cff2d97d621db22b27f7b3b6729e438bcf42c671ba91"
checksum = "469898e909a1774d844793b347135a0cd344ca2f69d082013ecb8061a2229a3a"
dependencies = [
"hashbrown",
]

View File

@ -44,7 +44,7 @@ base64 = "0.13.0"
dashmap = "4.0.2"
either = "1"
indexmap = {version = "1", features = ["serde"]}
lru = "0.6.1"
lru = "0.7.1"
once_cell = "1"
pathdiff = "0.2.0"
regex = "1"

View File

@ -24,7 +24,7 @@ tsc = ["dashmap", "once_cell", "regex"]
ahash = "0.7.4"
anyhow = "1.0.41"
dashmap = {version = "4.0.2", optional = true}
lru = {version = "0.6.5", optional = true}
lru = { version = "0.7.1", optional = true }
once_cell = {version = "1.8.0", optional = true}
path-clean = {version = "=0.1.0", optional = true}
regex = {version = "1", optional = true}