cargo-quality 0.2.0

Professional Rust code quality analysis tool with hardcoded standards
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-FileCopyrightText: 2025 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT

//! Diff generation and display with responsive layout.
//!
//! This module provides professional diff visualization that adapts to terminal
//! width, offering vertical layout for narrow terminals and side-by-side for
//! wider displays.

pub mod display;
mod generator;
pub mod types;

pub use display::{show_full, show_interactive, show_summary};
pub use generator::generate_diff;
pub use types::DiffResult;