patchable 0.5.6

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
rust-version.workspace = true
keywords.workspace = true
documentation.workspace = true
readme.workspace = true

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

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

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

[dev-dependencies]
thiserror.workspace = true
serde.workspace = true

[[test]]
name = "basic"

[[test]]
name = "serde"
required-features = ["serde"]

[[test]]
name = "impl_from"
required-features = ["impl_from"]