rustycache 1.0.0

A simple and easy-to-use caching library for Rust.
Documentation
[dependencies.chrono]
version = "0.4"

[dependencies.tokio]
features = ["full"]
version = "1"

[lib]
name = "rustycache"
path = "src/lib.rs"

[package]
authors = ["Q300Z"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["caching"]
description = "A simple and easy-to-use caching library for Rust."
edition = "2024"
homepage = "https://github.com/Q300Z/rustycache"
keywords = ["cache", "ttl", "LRU", "LFU", "FIFO"]
license-file = "LICENSE"
name = "rustycache"
readme = "README.md"
repository = "https://github.com/Q300Z/rustycache"
rust-version = "1.86"
version = "1.0.0"

[[test]]
name = "fifo_tests"
path = "tests/fifo_tests.rs"

[[test]]
name = "lfu_tests"
path = "tests/lfu_tests.rs"

[[test]]
name = "lru_tests"
path = "tests/lru_tests.rs"