cargo-stern4rust 0.2.0

Cargo subcommand that fails the build when a Rust workspace breaks a house coding rule, such as AAA test structure or one struct per file
Documentation
// Copyright 2025 Umberto Gotti <umberto.gotti@umbertogotti.dev>
// Licensed under the MIT License
// SPDX-License-Identifier: MIT

pub mod args;
pub mod config;
pub mod header_source;
pub mod json_printer;
pub mod manifest_resolver;
pub mod offence;
pub mod offence_threshold;
pub mod output_format;
pub mod registry_item;
pub mod registry_parser;
pub mod report_printer;
pub mod rule;
pub mod rule_registry;
pub mod rules;
pub mod run_outcome;
pub mod runner;
pub mod section;
pub mod source_file;
pub mod source_reader;
pub mod source_walker;
pub mod test_file_item;
pub mod test_file_parser;
pub mod unit_test_finder;
pub mod unit_test_site;