rs-hack 0.5.5

AST-aware Rust refactoring tool for AI agents - transform, rename, inspect & more
Documentation
1
2
3
4
5
6
7
8
9
10
//! Per-command lib API: each subcommand of the rs-hack CLI is exposed here as
//! `pub fn run(args: …Args) -> Result<…Result>` so embedders (MCP server, yah,
//! tests) can drive the same logic without shelling out. The CLI in `main.rs`
//! is a thin clap → struct → `run()` translator that adds rendering on top.

pub mod doc_coverage;
pub mod find;
pub mod match_audit;
pub mod neighbors;
pub mod summary;