compose-idents 0.2.2

A Rust macro for generating new identifiers (names of variables, functions, traits, etc) by concatenating one or more arbitrary parts and applying other manipulations.
Documentation
[dependencies.heck]
version = "0.5"

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

[dependencies.quote]
version = "1.0"

[dependencies.syn]
features = ["full", "visit-mut"]
version = "2.0"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.rstest]
version = "~0.24.0"

[dev-dependencies.tempfile]
version = "3.19"

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

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

[package]
authors = ["Andrei Pashkin <andrew.pashkin@gmx.co.uk>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Rust macro for generating new identifiers (names of variables, functions, traits, etc) by concatenating one or more arbitrary parts and applying other manipulations."
documentation = "https://docs.rs/compose-idents"
edition = "2018"
exclude = [".github/*", ".pre-commit-config.yaml", "Taskfile.yml", "*.tpl", "snippets/*.tpl", "snippets/*.rs", ".gitignore", "AGENTS.md"]
keywords = ["ident", "identifier", "name", "concatenate", "generate"]
license = "MIT"
name = "compose-idents"
readme = "README.md"
repository = "https://github.com/AndreiPashkin/compose-idents"
version = "0.2.2"

[[test]]
harness = false
name = "build"
path = "tests/build.rs"

[[test]]
harness = false
name = "format_doc_attr"
path = "tests/compile/format_doc_attr.rs"

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