ax-cache 0.1.0

Hardware-aware concurrent cache engine. Sharded SwissTable with S3-FIFO eviction, fueled by axhash.
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 = "ax-cache"
version = "0.1.0"
authors = ["Bagus Dwi Harianto <robbymangkualam2000@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hardware-aware concurrent cache engine. Sharded SwissTable with S3-FIFO eviction, fueled by axhash."
readme = "README.md"
keywords = [
    "cache",
    "concurrent",
    "swisstable",
    "s3-fifo",
    "performance",
]
categories = [
    "caching",
    "concurrency",
    "data-structures",
]
license = "MIT"

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

[[bench]]
name = "contention"
path = "benches/contention.rs"
harness = false

[[bench]]
name = "head_to_head_moka_contention"
path = "benches/head_to_head_moka_contention.rs"
harness = false

[[bench]]
name = "head_to_head_moka_single"
path = "benches/head_to_head_moka_single.rs"
harness = false

[[bench]]
name = "head_to_head_moka_zipfian"
path = "benches/head_to_head_moka_zipfian.rs"
harness = false

[[bench]]
name = "scan_resistance"
path = "benches/scan_resistance.rs"
harness = false

[[bench]]
name = "single_thread"
path = "benches/single_thread.rs"
harness = false

[[bench]]
name = "soak_test"
path = "benches/soak_test.rs"
harness = false

[[bench]]
name = "zipfian"
path = "benches/zipfian.rs"
harness = false

[dependencies.axhash-core]
version = "0.8.2"

[dependencies.axhash-map]
version = "0.1.2"

[dependencies.hashbrown]
version = "0.17.1"
features = [
    "raw-entry",
    "default-hasher",
    "inline-more",
]
default-features = false

[dependencies.parking_lot]
version = "0.12.5"

[dependencies.slab]
version = "0.4.12"

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

[dev-dependencies.hdrhistogram]
version = "7.5.4"

[dev-dependencies.moka]
version = "0.12"
features = ["sync"]

[dev-dependencies.rand]
version = "0.10.1"
features = ["std"]

[dev-dependencies.rand_distr]
version = "0.6.0"