freqache 0.2.2

A weighted, thread-safe, futures-aware LFU cache which supports a custom eviction policy
Documentation
[package]
name = "freqache"
version = "0.2.2"
authors = ["haydnv"]
edition = "2018"
license = "Apache-2.0"
description = "A weighted, thread-safe, futures-aware LFU cache which supports a custom eviction policy"
repository = "http://github.com/haydnv/freqache"
readme = "README.md"

categories = ["asynchronous", "caching", "concurrency", "data-structures"]
keywords = ["lfu", "cache", "custom", "eviction"]

[dependencies]
async-trait = "0.1"
futures = "0.3"
log = "0.4"
uplock = "0.1"

[dev-dependencies]
rand = "0.8"
tokio = { version = "1.5", features = ["macros"] }
tokio-test = "0.4"