robinxx_map 0.1.0

High-performance, thread-safe open-addressing hash map using Robin Hood displacement & xxHash3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Contributing to robinxx_map


Thank you for your interest! This project follows **Spec-Driven Development (SDD)** with strict safety and performance guardrails.

## 🛠 Development Workflow

1. **Fork & Branch**: Create `feat/<feature>` or `fix/<issue>` from `main`.
2. **Validate Locally**:
   ```bash
   cargo check

   cargo test

   cargo clippy -- -D warnings

   RUSTDOCFLAGS="-D warnings" cargo doc --no-deps

   cargo fmt --check

   cargo bench

   ```
3. **Submit PR**: Attach benchmark deltas if performance-sensitive. Ensure 100% public API doctests pass.
4. **Review**: Maintainers verify invariants, safety comments, and benchmark stability before squash merge.