rust-diff-analyzer 1.6.0

Semantic analyzer for Rust PR diffs that distinguishes production code from test code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-FileCopyrightText: 2025 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT

pub mod change;
pub mod classification;
pub mod scope;
pub mod semantic_unit;

pub use change::{AnalysisResult, Change, Summary};
pub use classification::CodeType;
pub use scope::{AnalysisScope, ExclusionReason, SkippedFile};
pub use semantic_unit::{LineSpan, SemanticUnit, SemanticUnitKind, Visibility};