macro-template 0.1.0

Macro to generate repeated Rust code with table-driven inputs.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85.0"
name = "macro-template"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macro to generate repeated Rust code with table-driven inputs."
homepage = "https://github.com/fast/macro-template"
readme = "README.md"
keywords = [
    "macro",
    "template",
    "codegen",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "Apache-2.0"
repository = "https://github.com/fast/macro-template"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[lib]
name = "macro_template"
path = "src/lib.rs"
proc-macro = true

[[test]]
name = "compiletest"
path = "tests/compiletest.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[dependencies.proc-macro2]
version = "1.0.106"

[dependencies.quote]
version = "1.0.45"

[dependencies.syn]
version = "2.0.118"

[dev-dependencies.paste]
version = "1.0.15"

[dev-dependencies.trybuild]
version = "1.0.116"

[lints.clippy]
dbg_macro = "deny"
too_many_arguments = "allow"
type_complexity = "allow"

[lints.rust]
unknown_lints = "deny"
unsafe_code = "deny"
unused_must_use = "deny"