From 738e7a3fc6e732d1637bced06e5ed4f6196eddcf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Sep 2022 18:07:30 +0200 Subject: [PATCH] build(deps): update lru requirement from 0.7 to 0.8 (#675) Updates the requirements on [lru](https://github.com/jeromefroe/lru-rs) to permit the latest version. - [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.7.0...0.8.0) --- updated-dependencies: - dependency-name: lru dependency-type: direct:production ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andronik --- parity-util-mem/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parity-util-mem/Cargo.toml b/parity-util-mem/Cargo.toml index ae772e519..9032d941b 100644 --- a/parity-util-mem/Cargo.toml +++ b/parity-util-mem/Cargo.toml @@ -18,7 +18,7 @@ build = "build.rs" [dependencies] cfg-if = "1.0.0" dlmalloc = { version = "0.2.1", features = ["global"], optional = true } -lru = { version = "0.7", optional = true } +lru = { version = "0.8", optional = true } hashbrown = { version = "0.12", optional = true } mimalloc = { version = "0.1.18", optional = true } libmimalloc-sys = { version = "0.1.14", optional = true }