rjd 1.2.1

Compare two JSON files or inline JSON strings and output the differences
Documentation
1
2
3
4
5
6
7
8
9
10
//! Diff module for comparing JSON values
//!
//! This module provides the core diff algorithm for comparing JSON structures.
//! It uses a recursive tree traversal approach to identify added, removed,
//! and modified values between two JSON documents.

mod engine;
mod visitor;

pub use engine::diff;