[package] name = "code-product" version = "0.4.1" edition = "2021" authors = ["Christian Thäter "] description = "macro producing multiple expansions" documentation = "https://docs.rs/code-product" license = "MIT OR Apache-2.0" repository = "https://git.pipapo.org/cehteh/code-product.git" keywords = ["preprocessor", "macro", "expansion", "xmacros"] categories = ["development-tools::procedural-macro-helpers", "rust-patterns"] #readme = "README.md" # 1.70.0 is the first version with 'sparse' protocol support # We don't care about testing anything older because its slooooow to test rust-version = "1.70.0" [dependencies] code-product-macro = { version = "0.4.0", path = "macro" } code-product-lib = { version = "0.4.0", path = "lib" } [lints.rust] missing_docs = "warn" [lints.clippy] pedantic = "warn" cargo_common_metadata = "allow" 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" [workspace] members = [ "macro", "lib" ]