todo-tree 1.1.0

A CLI tool to find and display TODO-style comments in your codebase
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `tt` binary entry point: a short-name alias for `todo-tree`. Reuses
//! `todo-tree`'s `app` module via `#[path]` so the two binaries share one
//! implementation with no runtime indirection.

#[path = "../todo-tree/app/mod.rs"]
mod app;

fn main() {
    let result = app::run();
    if let Err(report) = &result {
        eprintln!("{report:?}");
    }
    std::process::exit(app::exit_code_for(&result));
}