diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-21 06:40:46 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-21 06:40:46 +0800 |
| commit | 04ce3a18efe971c5b6893977f0ebe1ce1d9a6947 (patch) | |
| tree | 0f70ebbfae3e89404603721a1505dbed0cd6371d /mingling_cli/Cargo.toml | |
| parent | 8a230bd93b4801cc9001d0611ade16261e4f0cc4 (diff) | |
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
Diffstat (limited to 'mingling_cli/Cargo.toml')
| -rw-r--r-- | mingling_cli/Cargo.toml | 18 |
1 files changed, 16 insertions, 2 deletions
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] |
