diff_doc 0.6.1

A document diffing library supporting multiple formats (JSON, YAML, XML, TOML).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "diff_doc"
version = "0.6.1"
authors = ["Vladimir Krinitsyn"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A document diffing library supporting multiple formats (JSON, YAML, XML, TOML)."
readme = "README.md"
license = "MIT"
repository = "https://github.com/vkrinitsyn/diff-doc-rs"

[features]
default = []
patch = ["dep:diffy"]
verbose = []

[lib]
name = "diff_doc"
path = "src/lib.rs"

[[bin]]
name = "diff_doc"
path = "src/main.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.diffy]
version = "0.4"
optional = true

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "serde_derive",
    "std",
]

[dependencies.serde-xml-rs]
version = "^0.8"

[dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision"]

[dependencies.serde_yaml]
version = "0.9"

[dependencies.toml]
version = "^0.9"