diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-20 15:35:55 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-20 15:37:46 +0800 |
| commit | 85ab2969934744e8a0346c78daaab7f6d7b85ee6 (patch) | |
| tree | 78c0b39e70e1b3ff54a1e05455571fb68b7fb526 /.vscode | |
| parent | 62e323c80306d7dca68e47377a0ed6f4e146ba48 (diff) | |
feat(mingling_cli): add scaffold for CLI tool
Add initial project structure for the mingling-cli scaffolding tool,
including Cargo manifest and entry point
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/settings.json | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 8b49198..11145a1 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,19 +1,20 @@ { - "rust-analyzer.check.command": "clippy", - "rust-analyzer.checkOnSave": true, - "rust-analyzer.linkedProjects": [ - ".run/Cargo.toml", - "mingling_pathf/test/Cargo.toml", - "arg_picker/Cargo.toml", - "arg_picker/test/Cargo.toml", - ], - "rust-analyzer.cargo.features": [ - "structural_renderer", - "mingling_support", - "all_serde_fmt", - "docs_rs", - "picker", - "parser", - "comp", - ], + "rust-analyzer.check.command": "clippy", + "rust-analyzer.checkOnSave": true, + "rust-analyzer.linkedProjects": [ + ".run/Cargo.toml", + "mingling_pathf/test/Cargo.toml", + "mingling_cli/Cargo.toml", + "arg_picker/Cargo.toml", + "arg_picker/test/Cargo.toml" + ], + "rust-analyzer.cargo.features": [ + "structural_renderer", + "mingling_support", + "all_serde_fmt", + "docs_rs", + "picker", + "parser", + "comp" + ] } |
