From d6cf7cd9656025d1c969c3d6ebbec3bf2fd549e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Aug 2023 23:49:49 +0000 Subject: [PATCH] Bump lru from 0.10.1 to 0.11.0 Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.10.1 to 0.11.0. - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.10.1...0.11.0) --- updated-dependencies: - dependency-name: lru dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 17 ++++------------- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d048ee5..88da896 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2676,15 +2676,6 @@ dependencies = [ "ahash 0.7.6", ] -[[package]] -name = "hashbrown" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" -dependencies = [ - "ahash 0.8.3", -] - [[package]] name = "hashbrown" version = "0.14.0" @@ -4259,11 +4250,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.10.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "718e8fae447df0c7e1ba7f5189829e63fd536945c8988d61444c19039f16b670" +checksum = "eedb2bdbad7e0634f83989bf596f497b070130daaa398ab22d84c39e266deec5" dependencies = [ - "hashbrown 0.13.2", + "hashbrown 0.14.0", ] [[package]] @@ -5882,7 +5873,7 @@ dependencies = [ "hex", "libp2p 0.51.3", "lighthouse_network", - "lru 0.10.1", + "lru 0.11.0", "network", "parking_lot 0.12.1", "primitive-types 0.12.1", diff --git a/Cargo.toml b/Cargo.toml index e60de2f..4d10bb1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ futures = "0.3.28" hex = "0.4.3" libp2p = { version = "0.51.0", default-features = false, features = ["dns", "tokio", "ecdsa", "noise", "macros", "mplex", "secp256k1", "tcp", "yamux"] } #libp2p-identity = { version = "0.2.1", features = ["secp256k1"] } -lru = "0.10.1" +lru = "0.11.0" parking_lot = "0.12.1" primitive-types = "0.12.1" serde_yaml = "0.9.22"