[package]
name = "fixed-cache"
version = "0.1.2"
edition = "2024"
description = "A minimalistic, lock-free, fixed-size cache"
rust-version = "1.88"
authors = ["DaniPopes <57450786+DaniPopes@users.noreply.github.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DaniPopes/fixed-cache"
keywords = ["fixed", "cache", "hash", "concurrent", "lock-free"]
categories = ["caching", "concurrency", "data-structures"]
[dependencies]
equivalent = "1"
rapidhash = { version = "4", default-features = false, optional = true }
typeid = { version = "1", default-features = false, optional = true }
[dev-dependencies]
rapidhash = { version = "4", default-features = false }
[features]
default = []
rapidhash = ["dep:rapidhash"]
nightly = ["rapidhash?/nightly"]
stats = ["dep:typeid"]