[package]
edition = "2024"
name = "repetitive"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macro for generating repetitive code"
readme = "README.md"
categories = ["rust-patterns"]
license = "MIT"
[features]
default = ["doc"]
doc = []
[lib]
name = "repetitive"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "swizzle"
path = "examples/swizzle.rs"
[[test]]
name = "at"
path = "tests/at.rs"
[[test]]
name = "concat"
path = "tests/concat.rs"
[[test]]
name = "for_"
path = "tests/for_.rs"
[[test]]
name = "if_"
path = "tests/if_.rs"
[[test]]
name = "include"
path = "tests/include.rs"
[[test]]
name = "let_"
path = "tests/let_.rs"
[[test]]
name = "match_"
path = "tests/match_.rs"
[[test]]
name = "methods"
path = "tests/methods.rs"
[[test]]
name = "normal"
path = "tests/normal.rs"
[[test]]
name = "ops"
path = "tests/ops.rs"
[[test]]
name = "pattern"
path = "tests/pattern.rs"
[[test]]
name = "tokens"
path = "tests/tokens.rs"
[[test]]
name = "value"
path = "tests/value.rs"
[dependencies.proc-macro2]
version = "1.0.101"
[dependencies.quote]
version = "1.0.40"
[dependencies.string-interner]
version = "0.19.0"
[dependencies.syn]
version = "2.0.106"
features = [
"extra-traits",
"full",
]