sara_core/diff/
mod.rs

1//! Diff service for comparing knowledge graphs.
2//!
3//! Provides functionality to compute differences between two states of the
4//! requirements knowledge graph, supporting Git reference comparisons.
5
6mod options;
7mod service;
8
9pub use options::DiffOptions;
10pub use service::{DiffError, DiffResult, DiffService};