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
// SPDX-FileCopyrightText: 2025 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT

pub mod ast_visitor;
pub mod extractor;
pub mod mapper;

pub use extractor::extract_semantic_units;
pub use mapper::{MapResult, map_changes};