sara-core 0.6.0

Core library for Sara - Requirements Knowledge Graph CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Validation engine and rules for the knowledge graph.
//!
//! The validation system uses trait-based rules orchestrated by the [`Validator`].
//! External code should use [`validate`] or [`pre_validate`] functions.

mod report;
mod rule;
mod rules;
mod validator;

pub use report::{ValidationIssue, ValidationReport};
pub use rule::Severity;
pub use validator::{pre_validate, validate};