diffx-core 0.7.1

Core library for diffx - blazing fast semantic diff engine for structured data. Zero-copy parsing, streaming support, memory-efficient algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Diff module - handles difference detection between values

mod arrays;
mod core;
mod objects;
mod recursive;

// Re-export public API
pub use core::{diff, diff_paths};

// Re-export for internal use within diffx-core
pub(crate) use arrays::diff_arrays;
pub(crate) use objects::diff_objects;
pub(crate) use recursive::{add_diff_result, diff_recursive};