rustify-ml 0.1.2

Profile Python hotspots and auto-generate Rust + PyO3 stubs via maturin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Contributing

Thanks for helping improve rustify-ml!

## How to report issues
- Open a GitHub issue with a **minimal Python snippet** that fails translation (or produces incorrect output).
- Include the `rustify-ml` command you ran (flags, file path, threshold, ml-mode), plus the generated Rust snippet if possible.
- Mention your Python version and OS.

## Development quickstart
- Install: `cargo install rustify-ml` and `pip install maturin` (needed for builds)
- Run tests: `cargo test --all --all-targets -- --nocapture`
- Bench (HTML reports): `cargo bench --bench python_vs_rust`

## Style
- Use Rust 2024 edition, `cargo fmt` and `cargo clippy`.
- Prefer explicit types and prepared statements when adding database code (future-proofing).
- Keep examples realistic and performance-focused.