[package] name = "oxygengine-ignite-derive" version = "0.30.0" authors = ["Patryk 'PsichiX' Budzynski "] edition = "2021" description = "Ignite derive module for Oxygengine" license = "MIT OR Apache-2.0" homepage = "https://github.com/PsichiX/oxygengine" repository = "https://github.com/PsichiX/oxygengine" documentation = "https://docs.rs/oxygengine-ignite-derive" readme = "../../README.md" [lib] proc-macro = true [features] default = ["target-yaml"] target-yaml = ["serde_yaml"] target-json = ["serde_json"] target-ron = ["ron"] target-binary = ["bincode"] pretty = [] full = ["target-yaml", "target-json", "target-ron", "target-binary"] [dependencies] oxygengine-ignite-types = { version = "0.30", path = "../ignite-types" } quote = "1.0" syn = { version = "1.0", features = ["extra-traits"] } lazy_static = "1.4" serde_yaml = { version = "0.9", optional = true } serde_json = { version = "1", optional = true } bincode = { version = "1", optional = true } ron = { version = "0.8", optional = true }