blob: 04ad4fc9bb2ee46e71bc5ec15e43f3982848237b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[package]
name = "macros"
version = "0.1.0"
edition = "2024"
[lib]
proc-macro = true
[dependencies]
syn = { version = "2.0", features = ["full", "extra-traits"] }
quote = "1.0"
proc-macro2 = "1.0"
regex = "1.12"
string_proc = { path = "../../../utils/string_proc" }
|