diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-02-06 02:06:53 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-02-06 02:06:53 +0800 |
| commit | 520925836243b9c3e60f199f11374b3eddbe3fae (patch) | |
| tree | 79856008574ca11dab9c81b577d6633fbbcfad51 /systems/_constants/macros/Cargo.toml | |
| parent | 152ce138bf7cb21d9579749afa16ee7c41c80518 (diff) | |
Add constants system with path generation macros
Diffstat (limited to 'systems/_constants/macros/Cargo.toml')
| -rw-r--r-- | systems/_constants/macros/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/systems/_constants/macros/Cargo.toml b/systems/_constants/macros/Cargo.toml new file mode 100644 index 0000000..04ad4fc --- /dev/null +++ b/systems/_constants/macros/Cargo.toml @@ -0,0 +1,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" } |
