From fb2ffa849a2cf9251cc274ebea5daa9898579787 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 26 Mar 2026 15:55:10 +0800 Subject: Add shell completion system with descriptions and i18n support --- macros/comp_system_macros/Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 macros/comp_system_macros/Cargo.toml (limited to 'macros/comp_system_macros/Cargo.toml') diff --git a/macros/comp_system_macros/Cargo.toml b/macros/comp_system_macros/Cargo.toml new file mode 100644 index 0000000..f571f29 --- /dev/null +++ b/macros/comp_system_macros/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "comp_system_macros" +version.workspace = true +edition = "2024" + +[lib] +proc-macro = true + +[dependencies] +proc-macro2.workspace = true +quote.workspace = true +syn = { workspace = true, features = ["visit"] } -- cgit