patchable 0.5.8

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.8", path = "../patchable-macro" }

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

[dev-dependencies]
anyhow = "1.0.100"
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.149", default-features = false, features = ["alloc"] }
postcard = { version = "1.1.3", default-features = false, features = ["heapless"] }
heapless = { version = "0.7.17", default-features = false }
trybuild = "1.0.114"

[[test]]
name = "basic"

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

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

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