[package] name = "macroconf" version = "0.2.1" edition = "2021" description = "macro for creating configurations using miniconf" license = "MIT OR Apache-2.0" repository = "https://git.mkaenner.de/max/macroconf" readme = "README.md" categories = ["config", "embedded", "data-structures"] keywords = ["miniconf", "macro", "config"] authors = ["Max Känner "] [lints.rust] unsafe_code = "forbid" [lints.clippy] pedantic = "deny" nursery = "deny" cargo = "warn" [lib] proc-macro = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] syn = { version = "2.0", features = ["full", "extra-traits"] } proc-macro2 = "1.0" quote = "1.0" convert_case = "0.6.0" darling = "0.20" [dev-dependencies] miniconf = { version = "0.13", features = ["json-core"] } serde = "1.0"