-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 931 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 931 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
[package]
name = "minicache"
version = "0.1.1"
edition = "2024"
authors = ["Your Name morshedulmunna1@gmail.com"]
description = "A fast, lightweight, async-compatible in-memory cache with TTL support and automatic cleanup"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/execute-soft/minicache"
repository = "https://github.com/execute-soft/minicache"
documentation = "https://docs.rs/minicache"
keywords = ["cache", "ttl", "async", "tokio", "memory"]
categories = ["caching", "data-structures", "concurrency", "asynchronous"]
exclude = [
"target/*",
"benchmark_results/*",
"*.sh",
"docs/BENCHMARKS.md",
"docs/PERFORMANCE_GUIDE.md",
"docs/README_BENCHMARKS.md"
]
[dependencies]
tokio = {version = "1.48.0", features = ["full"]}
[dev-dependencies]
criterion = { version = "0.7.0", features = ["html_reports"] }
sysinfo = "0.37.2"
[[bench]]
name = "minicache_benchmark"
harness = false