From e63b6f313d2c8452b55910b606ae0ae97c3c49fc Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 23 Jul 2026 03:00:32 +0800 Subject: feat: add workspace package and consolidate rust-analyzer config Introduce a workspace-level Cargo package to unify workspace member management, and replace per-editor rust-analyzer configs (.vscode, .zed) with a single rust-analyzer.toml. --- .zed/settings.json | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .zed/settings.json (limited to '.zed/settings.json') diff --git a/.zed/settings.json b/.zed/settings.json deleted file mode 100644 index 7378109..0000000 --- a/.zed/settings.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "lsp": { - "rust-analyzer": { - "initialization_options": { - "checkOnSave": true, - "check": { "command": "clippy" }, - "files": { - "exclude": ["**/target/**", "**/.temp/**"] - }, - "linkedProjects": [ - ".run/Cargo.toml", - "mingling_pathf/test/Cargo.toml", - "arg_picker/Cargo.toml", - "arg_picker/test/Cargo.toml", - "mingling_cli/Cargo.toml" - ], - "cargo": { - "features": [] - }, - "procMacro": { - "enable": true, - "attributes": { - "enable": true - } - } - } - } - } -} -- cgit