bloom-lib 1.0.0

Probabilistic data structure library: Bloom filters, Cuckoo filters, Count-Min Sketch, HyperLogLog, MinHash, and Top-K. Tunable false-positive rates, serializable state, merge support, and streaming-safe updates.
Documentation
# Release v0.1.0 - 2026-05-18

## Summary

Initial scaffold for `bloom-lib`. Repository created, standards in place, CI configured, ready for implementation work in Phase 0.2.0.

## Added

- Repository structure: `src/`, `tests/`, `.dev/`, `.github/`
- `README.md` with project description and badges
- `CHANGELOG.md` in Keep a Changelog format
- `LICENSE-APACHE` and `LICENSE-MIT` (dual license)
- `REPS.md` - Rust Efficiency & Performance Standards (canonical, REPS v0.2.0)
- `.gitignore`, `.editorconfig`, `rustfmt.toml`, `clippy.toml`, `.gitattributes`
- `Cargo.toml` with MSRV 1.75, edition 2021, Apache-2.0 OR MIT
- `src/lib.rs` with REPS-disciplined lint configuration
- `.dev/PROMPT.md`, `.dev/DIRECTIVES.md`, `.dev/ROADMAP.md`
- `.github/workflows/ci.yml` - cross-platform CI on Node 24

## Next

Phase 0.2.0 - Foundation. See `.dev/ROADMAP.md`.