tiered-cache 0.1.6

A high-performance multi-tiered cache with automatic sizing
Documentation
[[bin]]
name = "tiered-cache"
path = "src/main.rs"

[dependencies.crossbeam-utils]
version = "0.8"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.futures]
version = "0.3"

[dependencies.lru-mem]
version = "0.3"

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.smallvec]
version = "1.11"

[dependencies.tokio]
features = ["sync", "time", "rt-multi-thread", "macros"]
version = "1.41.1"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.tokio-test]
version = "0.4"

[[example]]
name = "one_gb_cache"
path = "examples/one_gb_cache.rs"

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["caching", "data-structures"]
description = "A high-performance multi-tiered cache with automatic sizing"
edition = "2021"
keywords = ["cache", "lru", "memory", "performance", "async"]
license = "MIT OR Apache-2.0"
name = "tiered-cache"
readme = "README.md"
repository = "https://github.com/aeromilai/tiered-cache"
version = "0.1.6"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"