From 520925836243b9c3e60f199f11374b3eddbe3fae Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 6 Feb 2026 02:06:53 +0800 Subject: Add constants system with path generation macros --- systems/_constants/macros/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 systems/_constants/macros/Cargo.toml (limited to 'systems/_constants/macros/Cargo.toml') 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" } -- cgit