[package]
edition = "2024"
name = "patchable"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Automatically derive patch types for Rust structs to enable efficient partial updates with zero runtime overhead"
documentation = "https://docs.rs/patchable"
readme = "README.md"
keywords = [
"patch",
"update",
"derive",
"macro",
"serde",
]
categories = [
"data-structures",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ShapelessCat/patchable"
[lib]
name = "patchable"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.patchable-macro]
version = "0.4.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.thiserror]
version = "2.0.17"