From 7ce68cd11516bd7cf037ecea99a92aee7c31b2c3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 28 Mar 2026 00:47:46 +0800 Subject: Add initial Mingling framework codebase --- mingling_macros/Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 mingling_macros/Cargo.toml (limited to 'mingling_macros/Cargo.toml') diff --git a/mingling_macros/Cargo.toml b/mingling_macros/Cargo.toml new file mode 100644 index 0000000..683b5b4 --- /dev/null +++ b/mingling_macros/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "mingling_macros" +version = "0.1.0" +edition = "2024" + +[lib] +proc-macro = true + +[features] +default = [] +serde = [] + +[dependencies] +syn = { version = "2.0", features = ["full", "visit-mut"] } +quote = "1.0" +proc-macro2 = "1.0" + +just_fmt = "0.1.2" -- cgit