xtask-todo-lib 0.1.21

Todo workspace library and cargo devshell subcommand
Documentation
1
2
3
4
5
6
7
8
9
10
//! Binary for `cargo devshell`: delegates to the lib's devshell so all logic is test-covered.

use std::io::Write;

fn main() {
    if let Err(e) = xtask_todo_lib::devshell::run_main() {
        let _ = writeln!(std::io::stderr(), "{e}");
        std::process::exit(1);
    }
}