[package] name = "thread-safe-cache" version = "0.4.10" edition = "2021" authors = ["Evgeny Igumnov "] repository = "https://github.com/evgenyigumnov/thread-safe-cache" license = "MIT" license-file = "LICENSE" keywords = ["cache"] categories = ["library"] readme = "README.md" description = "Thread safe memory key value cache" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = "1.0.152" serde_derive = "1.0.152" bincode = "1.3.3" tokio = { version = "1.25.0", features = ["full"] } tokio-util = { version = "0.7.7", features = ["full"] } futures = "0.3.26" bytes = "1.4.0"