patchable 0.5.2

Automatically derive patch types for Rust structs to enable efficient partial updates with zero runtime overhead
Documentation
[package]
name = "patchable"
description.workspace = true
version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
categories.workspace = true
keywords.workspace = true
documentation.workspace = true
readme.workspace = true

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

[dependencies]
patchable-macro = { version = "0.5.2", path = "../patchable-macro" }
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true

[features]
default = ["serde"]
serde = ["patchable-macro/serde"]
impl_from = ["patchable-macro/impl_from"]

[dev-dependencies]
thiserror.workspace = true