[package] name = "validated_struct" version = "2.1.0" edition = "2018" authors = ["Pierre Avital "] description = "Easily generate nested structures with getters and predicated setters" keywords = ["proc-macros"] license = "EPL-2.0" repository = "https://github.com/p-avital/validated-struct-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] json_get = ["validated_struct_macros/serde_json", "serde_json"] [dependencies] serde = "1.0" validated_struct_macros = { path = "../validated_struct_macros/", version = "2.1.0", features = [ "serde", ] } serde_json = { version = "1.0", optional = true } json5 = { version = "0.4.1", optional = true } [dev-dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"