codedna 0.1.0

Rust-powered CLI for codebase intelligence: stack detection, architecture hints, LOC breakdown, repo maps, and dead-code heuristics.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod analysis;
mod cli;
mod dead_code_detector;
mod dependency_graph;
mod framework_detector;
mod git_handler;
mod language_detector;
mod loc_counter;
mod repo_map;
mod reporter;
mod scanner;

fn main() {
    cli::run();
}