Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -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.
//!
Expand Down Expand Up @@ -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`)
Expand Down