stackwise 0.1.0

Drop-in Rust stack usage analysis with JSON reports and an interactive local UI
Documentation
1
2
3
4
5
6
7
fn main() -> anyhow::Result<()> {
    let mut args = std::env::args_os().collect::<Vec<_>>();
    if args.get(1).and_then(|arg| arg.to_str()) == Some("stackwise") {
        args.remove(1);
    }
    stackwise::run(args)
}