[package]
edition = "2024"
rust-version = "1.95.0"
name = "robinxx_map"
version = "0.1.0"
authors = ["Dzulkifli Anwar"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance, thread-safe open-addressing hash map using Robin Hood displacement & xxHash3."
readme = "README.md"
keywords = [
"hashmap",
"no_std",
"xxhash",
"robin-hood",
"allocator",
]
categories = [
"data-structures",
"no-std",
]
license = "MIT"
repository = "https://github.com/da578/robinxx_map"
[lib]
name = "robinxx_map"
path = "src/lib.rs"
[[test]]
name = "integration_api"
path = "tests/integration_api.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.xxhash-rust]
version = "0.8.15"
features = ["xxh3"]
[dev-dependencies.criterion]
version = "0.8.2"
default-features = false
[dev-dependencies.hashbrown]
version = "0.17.1"
[dev-dependencies.proptest]
version = "1.11.0"
[lints.clippy]
missing_panics_doc = "warn"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "forbid"