Bump lru version (#6635)

This commit is contained in:
Emilia Hane
2024-02-17 03:01:33 +01:00
committed by GitHub
parent 24b5641f3f
commit 39eb6c6d6e
2 changed files with 4 additions and 13 deletions

15
Cargo.lock generated
View File

@ -2174,7 +2174,7 @@ dependencies = [
"hex",
"hkdf",
"lazy_static",
"lru 0.12.2",
"lru",
"more-asserts",
"parking_lot 0.11.2",
"rand 0.8.5",
@ -4189,15 +4189,6 @@ version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
[[package]]
name = "lru"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21"
dependencies = [
"hashbrown 0.14.3",
]
[[package]]
name = "lru"
version = "0.12.2"
@ -5522,7 +5513,7 @@ dependencies = [
"crossterm",
"indoc",
"itertools 0.12.1",
"lru 0.12.2",
"lru",
"paste",
"stability",
"strum 0.25.0",
@ -5877,7 +5868,7 @@ dependencies = [
"aquamarine",
"assert_matches",
"linked_hash_set",
"lru 0.11.1",
"lru",
"metrics",
"parking_lot 0.12.1",
"reth-db",

View File

@ -27,7 +27,7 @@ reth-trie.workspace = true
# common
parking_lot.workspace = true
lru = "0.11"
lru = "0.12"
tracing.workspace = true
tokio = { workspace = true, features = ["macros", "sync"] }