renkin 0.15.5

Ultra-fast retrosynthesis engine for computer-aided synthesis planning (CASP) — pure Rust, WASM-ready, Python bindings via PyO3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
# Pre-commit hook: mirrors CI lint checks (cargo fmt + clippy).
# Install: git config core.hooksPath hooks
set -euo pipefail

echo "[pre-commit] cargo fmt --check ..."
cargo fmt --check

echo "[pre-commit] cargo clippy -- -D warnings ..."
cargo clippy --workspace -- -D warnings

echo "[pre-commit] OK"