From 856693ac1f9e523a4c70809cadeadc4f883b87c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Nov 2020 09:02:16 +0000 Subject: [PATCH] chore: bump lru from 0.6.0 to 0.6.1 Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.6.0 to 0.6.1. - [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.0...0.6.1) Signed-off-by: dependabot[bot] --- Cargo.lock | 26 ++++++++++++++++++++------ core/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 575c85090c..33ae9f02aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -34,6 +34,12 @@ dependencies = [ "const-random", ] +[[package]] +name = "ahash" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6789e291be47ace86a60303502173d84af8327e3627ecf334356ee0f87a164c" + [[package]] name = "aho-corasick" version = "0.7.10" @@ -815,7 +821,7 @@ version = "3.11.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0f260e2fc850179ef410018660006951c1b55b79e8087e87111a2c388994b9b5" dependencies = [ - "ahash", + "ahash 0.3.8", "cfg-if 0.1.10", "num_cpus", ] @@ -1406,10 +1412,18 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91b62f79061a0bc2e046024cb7ba44b08419ed238ecbd9adbd787434b9e8c25" dependencies = [ - "ahash", "autocfg 1.0.0", ] +[[package]] +name = "hashbrown" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" +dependencies = [ + "ahash 0.4.6", +] + [[package]] name = "hermit-abi" version = "0.1.13" @@ -1671,7 +1685,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "86b45e59b16c76b11bf9738fd5d38879d3bd28ad292d7b313608becb17ae2df9" dependencies = [ "autocfg 1.0.0", - "hashbrown", + "hashbrown 0.8.2", "rayon", ] @@ -2035,11 +2049,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "111b945ac72ec09eb7bc62a0fbdc3cc6e80555a7245f52a69d3921a75b53b153" +checksum = "be716eb6878ca2263eb5d00a781aa13264a794f519fe6af4fbb2668b2d5441c0" dependencies = [ - "hashbrown", + "hashbrown 0.9.1", ] [[package]] diff --git a/core/Cargo.toml b/core/Cargo.toml index 2950ec0031..47e488b20b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -34,7 +34,7 @@ jsonrpc-http-server = "15.0.0" jsonrpc-pubsub = "15.0.0" jsonrpc-ws-server = "15.0.0" log = "0.4.8" -lru = "0.6.0" +lru = "0.6.1" num_cpus = "1.13.0" num-traits = "0.2" rand = "0.7.0"