[package]
edition = "2021"
rust-version = "1.75"
name = "diffx-core"
version = "0.7.0"
authors = ["kako-jun"]
build = false
exclude = [
".github/",
"target/",
"_old/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for diffx - blazing fast semantic diff engine for structured data. Zero-copy parsing, streaming support, memory-efficient algorithms"
homepage = "https://github.com/kako-jun/diffx"
documentation = "https://docs.rs/diffx"
readme = "README.md"
keywords = [
"diff",
"json",
"yaml",
"toml",
"parser",
]
categories = [
"data-structures",
"parsing",
"algorithms",
"text-processing",
]
license = "MIT"
repository = "https://github.com/kako-jun/diffx"
[lib]
name = "diffx_core"
path = "src/lib.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "test_unified_api"
path = "tests/test_unified_api.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.configparser]
version = "3.0"
[dependencies.csv]
version = "1.3"
[dependencies.quick-xml]
version = "0.31"
features = ["serialize"]
[dependencies.regex]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3.0"