From 04ce3a18efe971c5b6893977f0ebe1ce1d9a6947 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 21 Jul 2026 06:40:46 +0800 Subject: feat(mingling_cli): add metadata and linter commands with cargo analysis Introduce `metadata` and `mlint` subcommands, wire up `cargo_metadata` for manifest analysis, and enable procedural macro support in editors --- mingling_cli/Cargo.toml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'mingling_cli/Cargo.toml') diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml index 1cc45b6..93021f0 100644 --- a/mingling_cli/Cargo.toml +++ b/mingling_cli/Cargo.toml @@ -11,15 +11,29 @@ description = "Mingling's scaffolding tool for generating, analyzing, and modify keywords = ["cli", "cli-framework", "command-line", "tools"] categories = ["command-line-interface"] +[[bin]] +name = "mling" +path = "src/main.rs" + [dependencies.mingling] path = "../mingling" features = [ "picker", "pathf", - "dispatch_tree", - "extra_macros" + "extra_macros", + "structural_renderer" +] + +[build-dependencies.mingling] +path = "../mingling" +features = [ + "builds", + "pathf", ] [dependencies] +cargo_metadata = "0.23.1" +serde = { version = "1.0.229", features = ["derive"] } +serde_json = "1.0.151" [workspace] -- cgit