[package]
edition = "2024"
name = "nostro2-cache"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free LRU deduplication cache for the Nostr protocol."
homepage = "https://github.com/42Pupusas/NostrO2.git"
readme = "README.md"
keywords = [
"nostr",
"cache",
"lru",
"deduplication",
]
categories = [
"caching",
"data-structures",
]
license = "MIT"
repository = "https://github.com/42Pupusas/NostrO2.git"
resolver = "2"
[lib]
name = "nostro2_cache"
path = "src/lib.rs"
[[bench]]
name = "deduplication"
path = "benches/deduplication.rs"
harness = false
[dependencies.lru]
version = "0.12"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]