Skip to main content

koala_drift/
lib.rs

1//! Drift detector. See ADR-0014 and `wiki/features/drift-detector.md`.
2//!
3//! A `Check` reads the repo (wiki + tree) and emits a `Vec<Finding>`. Each
4//! finding pins a specific wiki line so CLI / CI can jump to it. Hard
5//! findings block; advisory findings inform.
6
7mod check;
8pub mod checks;
9mod format;
10mod registry;
11mod scan;
12
13pub use check::{Check, Finding, FindingKind, Severity};
14pub use format::{format_github_annotations, format_report, OutputFormat};
15pub use registry::Registry;