[package] name = "quick-hash-cache" version = "1.0.1" edition = "2018" authors = ["Snojj25"] categories = ["caching", "hashing", "async"] description = "Async Concurrent Hashmap. Unlike Redis it supports multi threading and advanced data structures" license = "MIT" repository = "https://github.com/Snojj25/quick-hash-cache" [features] # default = ["tokio"] [dependencies] num_cpus = "1.13.0" rand = "0.8" tokio = { version = "1", features = ["sync", "macros"] } hashbrown = { version = "0.13", features = ["inline-more", "raw"] } quanta = "0.9" [dev-dependencies] tokio = { version = "1", features = ["full"] }