rustycache 1.0.0

A simple and easy-to-use caching library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "rustycache"
version = "1.0.0"
rust-version = "1.86"
authors = ["Q300Z"]
description = "A simple and easy-to-use caching library for Rust."
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/Q300Z/rustycache"
homepage = "https://github.com/Q300Z/rustycache"
keywords = ["cache", "ttl","LRU", "LFU", "FIFO"]
categories = ["caching"]

edition = "2024"

[dependencies]
chrono = "0.4"
tokio = { version = "1", features = ["full"] }