[package] name = "code-product-macro" version = "0.4.0" edition = "2021" authors = ["Christian Thäter "] description = "macro producing multiple expansions" license = "MIT OR Apache-2.0" repository = "https://git.pipapo.org/cehteh/code-product.git" keywords = ["preprocessor", "proc-macro", "expansion"] categories = ["development-tools::procedural-macro-helpers", "rust-patterns"] [lib] proc-macro = true [dependencies] code-product-lib = { version = "0.4.0", path = "../lib" } proc-macro2 = { version = "1.0.69", features = ["proc-macro"] } #syn = { version = "2.0.39", features = ["full", "extra-traits"] } # [lints.rust] # missing_docs = "warn" # # [lints.clippy] # pedantic = "warn" # doc_markdown = "warn" # missing_panics_doc = "warn" # must_use_candidate = "warn" # missing_const_for_fn = "warn" # semicolon_if_nothing_returned = "warn" # # [lints.rustdoc] # missing_crate_level_docs = "warn"