ocloc 0.5.0

Fast, reliable lines-of-code counter with JSON/CSV output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod analyzer;
mod cli;
mod formatters;
mod languages;
mod traversal;
mod types;
mod types_diff;
mod vcs;

fn main() {
    // Delegate to CLI runner; errors are printed nicely inside.
    if let Err(err) = cli::run() {
        eprintln!("error: {err}");
        std::process::exit(1);
    }
}