Cargo.toml

 1[package]
 2name = "ui_macros"
 3version = "0.1.0"
 4edition.workspace = true
 5publish.workspace = true
 6license = "GPL-3.0-or-later"
 7
 8[lints]
 9workspace = true
10
11[lib]
12path = "src/ui_macros.rs"
13proc-macro = true
14
15[dependencies]
16proc-macro2.workspace = true
17quote.workspace = true
18syn.workspace = true
19convert_case.workspace = true