dualcache-ff 0.5.0

A wait-free, high-performance concurrent cache optimized for extreme read-to-write ratios.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "dualcache-ff"
version = "0.5.0"
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 = ["dep:arbitrary"]
default = ["std"]
full_bench = []
loom = ["dep:loom"]
std = ["ahash/std"]

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

[[test]]
name = "integration_tests"
path = "tests/integration_tests.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.arbitrary]
version = "1.3"
features = ["derive"]
optional = true

[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)",
]