rs-hack 0.4.1

AST-aware Rust refactoring tool for AI agents - now with generic transform & macro support
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod operations;
pub mod visitor;
pub mod editor;
pub mod diff;

#[cfg(test)]
mod tests;

pub use operations::*;
pub use editor::RustEditor;
pub use diff::{generate_unified_diff, print_diff, DiffStats};