[package] name = "lathe" version = "0.0.0" authors = ["Tyler Neely "] description = "scan resistant concurrent cache eviction manager" license = "GPL-3.0" homepage = "https://github.com/komora-io/lathe" repository = "https://github.com/komora-io/lathe" keywords = ["cache", "lfu", "concurrent", "caching", "lock-free"] categories = ["caching", "database-implementations", "concurrency", "data-structures", "algorithms"] documentation = "https://docs.rs/lathe/" readme = "README.md" edition = "2021" [features] lock_free_delays = [] [profile.bench] debug = true opt-level = 3 [profile.release] debug = true opt-level = 3 [dependencies] crossbeam-queue = "0.3.5"