rs-hack 0.4.3

AST-aware Rust refactoring tool for AI agents - transform, rename, inspect & more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod operations;
pub mod visitor;
pub mod editor;
pub mod diff;
pub mod path_resolver;
pub mod surgical;

#[cfg(test)]
mod tests;

pub use operations::*;
pub use editor::RustEditor;
pub use diff::{generate_unified_diff, print_diff, print_summary_diff, DiffStats};
pub use surgical::{Replacement, apply_surgical_edits};