tokmd-analysis 1.10.0

Analysis logic and enrichers for tokmd receipts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Language-aware import extraction and deterministic target normalization.
//!
//! This module intentionally keeps only parsing and normalization logic for
//! import-like statements so analysis code can compose it without filesystem
//! or receipt dependencies.

#![forbid(unsafe_code)]

mod parser;

pub(crate) use parser::{normalize_import_target, parse_imports, supports_language};

#[cfg(test)]
#[path = "tests.rs"]
mod moved_tests;