morphix 0.1.0

Mutate and observe Rust data structures
Documentation
[package]
name = "morphix"
version = "0.1.0"
edition = "2024"
license = "MIT"
authors = [
    "Shigma <shigma10826@gmail.com>",
]
description = "Mutate and observe Rust data structures"
repository = "https://github.com/shigma/morphix"
documentation = "https://docs.rs/morphix"

[features]
default = ["derive", "json"]
derive = ["dep:morphix_derive"]
full = ["derive"]
json = ["dep:serde_json"]

[dependencies]
morphix_derive = { version = "0.1.0", path = "../morphix_derive", optional = true }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.145", optional = true }

[dev-dependencies]
morphix = { path = ".", features = ["full"] }