From 5f23d8530dda80754d18e73e453d1d5234c107d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Jul 2021 08:33:41 -0600 Subject: [PATCH] chore: bump lru from 0.6.5 to 0.6.6 (#18963) Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.6.5 to 0.6.6. - [Release notes](https://github.com/jeromefroe/lru-rs/releases) - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.6.5...0.6.6) --- updated-dependencies: - dependency-name: lru dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 9 ++++++--- core/Cargo.toml | 2 +- gossip/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 60588f6df..21e1b48a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1720,6 +1720,9 @@ name = "hashbrown" version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +dependencies = [ + "ahash 0.7.4", +] [[package]] name = "heck" @@ -2479,11 +2482,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.6.5" +version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f374d42cdfc1d7dbf3d3dec28afab2eb97ffbf43a3234d795b5986dbf4b90ba" +checksum = "7ea2d928b485416e8908cff2d97d621db22b27f7b3b6729e438bcf42c671ba91" dependencies = [ - "hashbrown 0.9.1", + "hashbrown 0.11.2", ] [[package]] diff --git a/core/Cargo.toml b/core/Cargo.toml index 0025d606e..839b66056 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -31,7 +31,7 @@ indexmap = { version = "1.7", features = ["rayon"] } itertools = "0.10.1" libc = "0.2.98" log = "0.4.14" -lru = "0.6.5" +lru = "0.6.6" miow = "0.3.7" net2 = "0.2.37" num-traits = "0.2" diff --git a/gossip/Cargo.toml b/gossip/Cargo.toml index 5fd58515f..36241a00a 100644 --- a/gossip/Cargo.toml +++ b/gossip/Cargo.toml @@ -17,7 +17,7 @@ flate2 = "1.0" indexmap = { version = "1.7", features = ["rayon"] } itertools = "0.10.1" log = "0.4.14" -lru = "0.6.5" +lru = "0.6.6" matches = "0.1.8" num-traits = "0.2" rand = "0.7.0"