[dependencies.proptest]
optional = true
version = "1.6.0"
[dependencies.rand]
version = "0.9.0"
[dev-dependencies.criterion]
version = "0.5.1"
[features]
proptest = ["dep:proptest"]
[lib]
name = "bathroom"
path = "src/lib.rs"
[lints.clippy]
arithmetic_side_effects = "deny"
exit = "deny"
expect_used = "deny"
get_unwrap = "deny"
index_refutable_slice = "deny"
indexing_slicing = "deny"
match_on_vec_items = "deny"
match_wild_err_arm = "deny"
missing_docs_in_private_items = "deny"
missing_panics_doc = "deny"
option-if-let-else = "warn"
panic = "deny"
redundant-clone = "warn"
string_slice = "deny"
todo = "deny"
unchecked_duration_subtraction = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
use-self = "deny"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
let_underscore_drop = "deny"
missing-debug-implementations = "warn"
non_ascii_idents = "deny"
single_use_lifetimes = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
warnings = "deny"
[package]
authors = ["Oleksandr Prokhorenko <warbles.lieu_04@icloud.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures"]
description = "Implementation of the Bathroom Model hash table algorithm"
edition = "2024"
keywords = ["hash", "table", "bathroom-model", "algorithm", "data-structure"]
license = "MIT OR Apache-2.0"
name = "bathroom"
readme = "README.md"
repository = "https://github.com/minikin/bathroom"
version = "0.0.1"