set_associative 0.1.0

A hardware-optimized, set-associative cache implementation using CLOCK eviction policy highest throughput
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 = "set_associative"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A hardware-optimized, set-associative cache implementation using CLOCK eviction policy highest throughput"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/NikoMalik/set_associative"

[features]
default = ["allocator-api2"]

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

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

[dependencies.allocator-api2]
version = "0.2"
optional = true

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

[dev-dependencies.lfu_cache]
version = "1.3"

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

[dev-dependencies.wtinylfu]
version = "0.3"

[lints.clippy]
borrow_as_ptr = "warn"
doc_markdown = "allow"
manual_let_else = "warn"
manual_map = "allow"
missing_errors_doc = "allow"
missing_safety_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_continue = "warn"
option_if_let_else = "allow"
ptr_as_ptr = "warn"
ptr_cast_constness = "warn"
redundant_else = "warn"
ref_as_ptr = "warn"
semicolon_if_nothing_returned = "warn"
str_to_string = "warn"
undocumented_unsafe_blocks = "warn"

[lints.rust]
bare_trait_objects = "warn"
elided_lifetimes_in_paths = "warn"
ellipsis_inclusive_range_patterns = "warn"
explicit_outlives_requirements = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_extern_crates = "warn"