evict 0.2.1

Cache eviction policies: LRU, LRU-k, Clock etc
Documentation
[dependencies.chrono]
version = "0.4"

[dependencies.parking_lot]
version = "0.12"

[dependencies.priority-queue]
version = "2.0"

[dependencies.thiserror]
version = "2.0"

[lib]
name = "evict"
path = "src/lib.rs"

[package]
authors = ["Victor Farazdagi <farazdagi@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures"]
description = "Cache eviction policies: LRU, LRU-k, Clock etc"
documentation = "https://docs.rs/evict"
edition = "2024"
homepage = "https://github.com/farazdagi/evict"
keywords = ["cache", "eviction", "page-replacement", "swap", "paging"]
license = "MIT"
name = "evict"
readme = "README.md"
repository = "https://github.com/farazdagi/evict"
version = "0.2.1"

[[test]]
name = "lru"
path = "tests/lru.rs"