robinxx_map 0.1.0

High-performance, thread-safe open-addressing hash map using Robin Hood displacement & xxHash3.
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"
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"