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
Copy file name to clipboardExpand all lines: editors/code/package.json
+15-15
Original file line number
Diff line number
Diff line change
@@ -671,6 +671,21 @@
671
671
"string"
672
672
]
673
673
},
674
+
"rust-analyzer.cargo.targetDir": {
675
+
"markdownDescription": "Optional path to a rust-analyzer specific target directory.\nThis prevents rust-analyzer's `cargo check` and initial build-script and proc-macro\nbuilding from locking the `Cargo.lock` at the expense of duplicating build artifacts.\n\nSet to `true` to use a subdirectory of the existing target directory or\nset to a path relative to the workspace to use that path.",
676
+
"default": null,
677
+
"anyOf": [
678
+
{
679
+
"type": "null"
680
+
},
681
+
{
682
+
"type": "boolean"
683
+
},
684
+
{
685
+
"type": "string"
686
+
}
687
+
]
688
+
},
674
689
"rust-analyzer.cargo.unsetTest": {
675
690
"markdownDescription": "Unsets the implicit `#[cfg(test)]` for the specified crates.",
676
691
"default": [
@@ -1543,21 +1558,6 @@
1543
1558
"type": "string"
1544
1559
}
1545
1560
},
1546
-
"rust-analyzer.rust.analyzerTargetDir": {
1547
-
"markdownDescription": "Optional path to a rust-analyzer specific target directory.\nThis prevents rust-analyzer's `cargo check` from locking the `Cargo.lock`\nat the expense of duplicating build artifacts.\n\nSet to `true` to use a subdirectory of the existing target directory or\nset to a path relative to the workspace to use that path.",
1548
-
"default": null,
1549
-
"anyOf": [
1550
-
{
1551
-
"type": "null"
1552
-
},
1553
-
{
1554
-
"type": "boolean"
1555
-
},
1556
-
{
1557
-
"type": "string"
1558
-
}
1559
-
]
1560
-
},
1561
1561
"rust-analyzer.rustc.source": {
1562
1562
"markdownDescription": "Path to the Cargo.toml of the rust compiler workspace, for usage in rustc_private\nprojects, or \"discover\" to try to automatically find it if the `rustc-dev` component\nis installed.\n\nAny project which uses rust-analyzer with the rustcPrivate\ncrates must set `[package.metadata.rust-analyzer] rustc_private=true` to use it.\n\nThis option does not take effect until rust-analyzer is restarted.",
0 commit comments