You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The command will be executed for each workspace, `--manifest-path {workspace-dir}` will be passed to the invoked command and the command will be executed from the project root.",
2032
+
"The command will be executed for each workspace and the command will be executed from the corresponding workspace root.",
2033
+
"The command will be executed once in the project root."
2034
+
],
2035
+
},
2004
2036
_ => panic!("missing entry for {}: {}", ty,default),
"markdownDescription": "Specifies the invocation strategy to use when running the build scripts command.\nIf `per_workspace_with_manifest_path` is set, the command will be executed for each\nworkspace, `--manifest-path {workspace-dir}` will be passed to the invoked command and\nthe command will be executed from the project root.\nIf `per_workspace` is set, the command will be executed for each workspace and the\ncommand will be executed from the corresponding workspace root.\nIf `once_in_root` is set, the command will be executed once in the project root.",
426
+
"default": "per_workspace",
427
+
"type": "string",
428
+
"enum": [
429
+
"per_workspace",
430
+
"per_workspace_with_manifest_path",
431
+
"once_in_root"
432
+
],
433
+
"enumDescriptions": [
434
+
"The command will be executed for each workspace, `--manifest-path {workspace-dir}` will be passed to the invoked command and the command will be executed from the project root.",
435
+
"The command will be executed for each workspace and the command will be executed from the corresponding workspace root.",
436
+
"The command will be executed once in the project root."
"markdownDescription": "Override the command rust-analyzer uses to run build scripts and\nbuild procedural macros. The command is required to output json\nand should therefore include `--message-format=json` or a similar\noption.\n\nBy default, a cargo invocation will be constructed for the configured\ntargets and features, with the following base command line:\n\n```bash\ncargo check --quiet --workspace --message-format=json --all-targets\n```\n.",
0 commit comments