delegate-match 0.1.0

Procedural macro for delegation of grouped match arms
Documentation
[dependencies.proc-macro-error2]
version = "2.0.1"

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

[dependencies.quote]
version = "1.0.40"

[dependencies.syn]
features = ["full", "visit"]
version = "2.0.104"

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

[features]
debug-trace = []

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

[package]
authors = ["chipnertkj <domekaij@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["rust-patterns"]
description = "Procedural macro for delegation of grouped match arms"
documentation = "https://docs.rs/delegate-match"
edition = "2021"
keywords = ["macros", "proc-macro", "procedural-macros", "match", "delegation"]
license = "MIT OR Apache-2.0"
name = "delegate-match"
readme = "README.md"
repository = "https://github.com/chipnertkj/delegate-match"
rust-version = "1.81.0"
version = "0.1.0"

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

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

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

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

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

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

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

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

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

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

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