From 13b31784fe1205e8af96facb5ebddb0837e753b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 21:09:15 +0000 Subject: [PATCH] deps: bump lru from 0.11.0 to 0.12.0 Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.11.0 to 0.12.0. - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.11.0...0.12.0) --- updated-dependencies: - dependency-name: lru dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 ++----------- protocols/dcutr/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f4fd13cfccd..cfcf9928e14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2513,7 +2513,7 @@ dependencies = [ "libp2p-tcp", "libp2p-yamux", "log", - "lru 0.11.1", + "lru", "quick-protobuf", "quick-protobuf-codec", "rand 0.8.5", @@ -2612,7 +2612,7 @@ dependencies = [ "libp2p-swarm", "libp2p-swarm-test", "log", - "lru 0.12.0", + "lru", "quick-protobuf", "quick-protobuf-codec", "smallvec", @@ -3395,15 +3395,6 @@ dependencies = [ "value-bag", ] -[[package]] -name = "lru" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" -dependencies = [ - "hashbrown 0.14.0", -] - [[package]] name = "lru" version = "0.12.0" diff --git a/protocols/dcutr/Cargo.toml b/protocols/dcutr/Cargo.toml index ce038b4b5b7..5b500ce6e4a 100644 --- a/protocols/dcutr/Cargo.toml +++ b/protocols/dcutr/Cargo.toml @@ -24,7 +24,7 @@ quick-protobuf = "0.8" quick-protobuf-codec = { workspace = true } thiserror = "1.0" void = "1" -lru = "0.11.1" +lru = "0.12.0" [dev-dependencies] async-std = { version = "1.12.0", features = ["attributes"] }