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
// Module declarations
mod diff;
mod io;
mod parser;
mod types;
mod utils;

// Re-export public APIs
pub use diff::{diff, diff_paths};
pub use parser::*;
pub use types::*;
pub use utils::*;