-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 717 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "rustycache"
version = "2.0.0"
rust-version = "1.93"
authors = ["Q300Z"]
description = "A simple and easy-to-use caching library for Rust."
license = "MIT"
readme = "README.md"
repository = "https://github.com/Q300Z/rustycache"
keywords = ["cache", "ttl", "LRU", "LFU", "FIFO"]
categories = ["caching"]
edition = "2024"
[dependencies]
chrono = "0.4"
tokio = { version = "1", features = ["full"], optional = true }
parking_lot = "0.12"
ahash = "0.8.12"
[features]
default = ["async"]
async = ["dep:tokio"]
[dev-dependencies]
criterion = { version = "0.8.2", features = ["async_tokio"] }
[[bench]]
name = "cache_benchmarks"
harness = false
[[bench]]
name = "contention_benchmarks"
harness = false