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
15
mod csv;
mod format;
mod ini;
mod json;
mod toml;
mod xml;
mod yaml;

pub use csv::parse_csv;
pub use format::{detect_format_from_path, parse_content_by_format, FileFormat};
pub use ini::parse_ini;
pub use json::parse_json;
pub use toml::parse_toml;
pub use xml::parse_xml;
pub use yaml::parse_yaml;