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 /.zed/settings.json | |
| 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 '.zed/settings.json')
| -rw-r--r-- | .zed/settings.json | 51 |
1 files changed, 26 insertions, 25 deletions
diff --git a/.zed/settings.json b/.zed/settings.json index 6469826..3fa2cba 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -1,27 +1,28 @@ { - "lsp": { - "rust-analyzer": { - "initialization_options": { - "checkOnSave": true, - "check": { "command": "clippy" }, - "linkedProjects": [ - ".run/Cargo.toml", - "mingling_pathf/test/Cargo.toml", - "arg_picker/Cargo.toml", - "arg_picker/test/Cargo.toml", - ], - "cargo": { - "features": [ - "structural_renderer", - "mingling_support", - "all_serde_fmt", - "docs_rs", - "picker", - "parser", - "comp", - ], - }, - }, - }, - }, + "lsp": { + "rust-analyzer": { + "initialization_options": { + "checkOnSave": true, + "check": { "command": "clippy" }, + "linkedProjects": [ + ".run/Cargo.toml", + "mingling_pathf/test/Cargo.toml", + "mingling_cli/Cargo.toml", + "arg_picker/Cargo.toml", + "arg_picker/test/Cargo.toml" + ], + "cargo": { + "features": [ + "structural_renderer", + "mingling_support", + "all_serde_fmt", + "docs_rs", + "picker", + "parser", + "comp" + ] + } + } + } + } } |
