[package]
name = "diffo"
version = "0.2.0"
edition = "2021"
rust-version = "1.90"
license = "MIT"
description = "Semantic diffing for Rust structs via serde"
repository = "https://github.com/PiotrGrzybowski/diffo"
documentation = "https://docs.rs/diffo"
homepage = "https://github.com/PiotrGrzybowski/diffo"
keywords = ["diff", "serde", "comparison", "audit", "changelog"]
categories = ["development-tools", "data-structures"]
exclude = [
"IMPLEMENTATION_STATUS.md",
"design.md",
".claude/",
]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde-value = "0.7"
serde_json = "1.0"
glob = "0.3"
thiserror = "1.0"
colored = { version = "2.0", optional = true }
[dev-dependencies]
proptest = "1.0"
criterion = "0.5"
insta = "1.34"
[features]
default = ["pretty"]
pretty = ["colored"]
json-patch = []
[lib]
name = "diffo"
path = "src/lib.rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]