[package]
edition = "2024"
name = "dualcache-ff"
version = "0.4.1"
authors = ["hianova"]
build = false
exclude = [
".DS_Store",
"*.profraw",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A wait-free, high-performance concurrent cache optimized for extreme read-to-write ratios."
documentation = "https://docs.rs/dualcache-ff"
readme = "ReadMe.md"
keywords = [
"cache",
"concurrent",
"wait-free",
"lock-free",
"performance",
]
categories = [
"caching",
"concurrency",
"data-structures",
]
license = "MIT"
repository = "https://github.com/hianova/DualCache-FF"
[features]
arbitrary = []
default = ["std"]
full_bench = []
loom = ["dep:loom"]
std = ["ahash/std"]
[lib]
name = "dualcache_ff"
path = "src/lib.rs"
[[test]]
name = "concurrent"
path = "tests/concurrent.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "custom_abstractions"
path = "tests/custom_abstractions.rs"
[[test]]
name = "pressure"
path = "tests/pressure.rs"
[[test]]
name = "robust"
path = "tests/robust.rs"
[[test]]
name = "stability"
path = "tests/stability.rs"
[[test]]
name = "static_cache"
path = "tests/static_cache.rs"
[[test]]
name = "test_hash"
path = "tests/test_hash.rs"
[[test]]
name = "unsafe_spec"
path = "tests/unsafe_spec.rs"
[[bench]]
name = "capex"
path = "benches/capex.rs"
harness = false
[[bench]]
name = "common"
path = "benches/common.rs"
[[bench]]
name = "latency"
path = "benches/latency.rs"
harness = false
[[bench]]
name = "memory"
path = "benches/memory.rs"
harness = false
[[bench]]
name = "rw_ratio"
path = "benches/rw_ratio.rs"
harness = false
[[bench]]
name = "snapshot"
path = "benches/snapshot.rs"
harness = false
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.ahash]
version = "0.8"
features = ["compile-time-rng"]
default-features = false
[dependencies.loom]
version = "0.7"
optional = true
[dev-dependencies.TinyUFO]
version = "0.8.0"
[dev-dependencies.arbitrary]
version = "1.3"
features = ["derive"]
[dev-dependencies.crossbeam-epoch]
version = "0.9"
[dev-dependencies.dhat]
version = "0.3.3"
[dev-dependencies.libfuzzer-sys]
version = "0.4.7"
[dev-dependencies.memory-stats]
version = ">0"
[dev-dependencies.moka]
version = "0.12"
features = ["sync"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_distr]
version = "0.4"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(loom)",
"cfg(fuzzing)",
"cfg(full_bench)",
]