From 99ff1cf18e37c1860f6eeb600bc17036c8e68f44 Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Fri, 16 Dec 2022 22:44:23 -0500 Subject: [PATCH] Upgrade to hashbrown v0.13 --- .github/workflows/main.yml | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b1a1134..d2cc2b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: - stable - beta - nightly - - 1.56.0 # MSRV + - 1.61.0 # MSRV steps: - uses: actions/checkout@v2 diff --git a/Cargo.toml b/Cargo.toml index 63c68c8..3588448 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ default = ["hashbrown"] nightly = ["hashbrown", "hashbrown/nightly"] [dependencies] -hashbrown = { version = "0.12", optional = true } +hashbrown = { version = "0.13", optional = true } [dev-dependencies] scoped_threadpool = "0.1.*" diff --git a/README.md b/README.md index d83dcc6..fc2bb7b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ An implementation of a LRU cache. The cache supports `put`, `get`, `get_mut` and all of which are O(1). This crate was heavily influenced by the [LRU Cache implementation in an earlier version of Rust's std::collections crate]. -The MSRV for this crate is 1.56.0. +The MSRV for this crate is 1.61.0. ## Example