cartulary 0.3.0-alpha.1

The knowledge layer of your project — decisions, issues, docs, all in one place.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod check_violation;
mod scan;
mod validate_dr_events;
mod validate_events;
pub mod violation;

#[cfg(test)]
pub use check_violation::render;
pub use check_violation::{CheckViolation, CheckViolationKind, EventLogIssue};
pub use scan::{extract_id_prefix_from_path, extract_number_from_path, id_prefix_matches};
pub use validate_dr_events::validate_dr_event_chain;
pub use validate_events::validate_event_chain;
pub use violation::{Severity, Violations};