sara-core 0.5.0

Core library for Sara - Requirements Knowledge Graph CLI
Documentation
1
2
3
4
5
6
7
8
9
10
//! Diff service for comparing knowledge graphs.
//!
//! Provides functionality to compute differences between two states of the
//! requirements knowledge graph, supporting Git reference comparisons.

mod options;
mod service;

pub use options::DiffOptions;
pub use service::{DiffError, DiffResult, DiffService};