From d410eb13191c0a1a0a5b94916f739faa97a01021 Mon Sep 17 00:00:00 2001 From: Thomas Korrison Date: Tue, 24 Feb 2026 15:08:22 +0000 Subject: [PATCH 1/2] Apply suggested fix to src/lib.rs from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b54e4f9..1fe319a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -119,7 +119,7 @@ //! //! ```toml //! [dependencies] -//! cachekit = { version = "0.4", default-features = false, features = ["policy-s3-fifo"] } +//! cachekit = { version = "0.x", default-features = false, features = ["policy-s3-fifo"] } //! ``` //! //! # Data Structures (`ds`) From 2234a63a1a2e897399b68069b914ca3acd4f4347 Mon Sep 17 00:00:00 2001 From: Thomas Korrison Date: Tue, 24 Feb 2026 15:08:22 +0000 Subject: [PATCH 2/2] Apply suggested fix to src/lib.rs from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 1fe319a..4edf959 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ //! High-performance cache primitives with pluggable eviction policies. //! -//! `cachekit` provides a trait-based cache framework with 17 eviction policies, +//! `cachekit` provides a trait-based cache framework with 18 eviction policies, //! arena-backed data structures, and optional metrics — all designed for //! allocation-free hot paths and predictable tail latency. //!