macroweave 0.1.0

Procedural macros for small compile-time repetitions over Rust token sequences.
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 = "macroweave"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for small compile-time repetitions over Rust token sequences."
homepage = "https://github.com/fast/macroweave"
readme = "README.md"
keywords = [
    "macro",
    "repeat",
    "splice",
    "codegen",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "Apache-2.0"
repository = "https://github.com/fast/macroweave"

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

[[example]]
name = "read_le"
path = "examples/read_le.rs"

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

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

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

[dependencies.syn]
version = "2.0"
features = [
    "parsing",
    "printing",
    "proc-macro",
]
default-features = false

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

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

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