deloxide 1.1.0

Deloxide scrubs your threads clean by detecting deadlocks in real time—keeping your system smooth, safe, and corrosion-free. 🦀🧼🔒
Documentation
# Contributing

Use a recent Rust toolchain with edition 2024 support.

```sh
cargo fmt --all -- --check
cargo clippy --lib --bins --examples --all-features -- -D warnings
cargo test --lib
cargo check --examples
cargo bench --bench fast_path
scripts/check_docs.sh
```

Add one focused regression for a concurrency fix and verify that it fails for the
expected reason before changing production code. Prefer barriers/channels to sleeps
and isolate intentional deadlocks behind a process watchdog.

Run affected benchmarks (such as `cargo bench --bench fast_path` or relevant Criterion cases) for changes affecting performance or lock acquisition/release paths.

If introducing a new feature, adding corresponding tests and benchmarks for that feature is mandatory.

Keep commits small and use compact subjects such as `fix(rwlock)`, `docs(readme)`,
`book(internals)`, and `ci(checks)`.