From 2f10be2e077f14486e17a7fb4d956a83a9d9adf7 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Mon, 27 Jan 2025 19:07:28 -0500 Subject: [PATCH] Bump MSRV to 1.65.0 --- .github/workflows/main.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1ec42da..0083b76 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: - stable - beta - nightly - - 1.64.0 # MSRV + - 1.65.0 # MSRV steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 4f22a83..455b2fe 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.64.0. +The MSRV for this crate is 1.65.0. ## Example