koala-drift 1.0.4

Wiki ↔ code drift detector.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Drift detector. See ADR-0014 and `wiki/features/drift-detector.md`.
//!
//! A `Check` reads the repo (wiki + tree) and emits a `Vec<Finding>`. Each
//! finding pins a specific wiki line so CLI / CI can jump to it. Hard
//! findings block; advisory findings inform.

mod check;
pub mod checks;
mod format;
mod registry;
mod scan;

pub use check::{Check, Finding, FindingKind, Severity};
pub use format::{format_github_annotations, format_report, OutputFormat};
pub use registry::Registry;