1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//! Command-line interface for CrabScore #![warn(missing_docs)] #![forbid(unsafe_code)] /// Main CLI module pub mod cli; /// Command execution pub mod command; /// Project complexity analysis pub mod complexity; /// Binary discovery with graceful fallbacks pub mod binary_discovery; /// Performance, energy, and cost estimation pub mod estimation; /// Complexity-aware scoring engine pub mod scoring_engine;