-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnative.code-workspace
More file actions
32 lines (32 loc) · 929 Bytes
/
native.code-workspace
File metadata and controls
32 lines (32 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"rust-analyzer.check.allTargets": true,
"rust-analyzer.cargo.targetDir": ".rust-analyzer-vscode",
"rust-analyzer.cargo.features": "all",
"rust-analyzer.rustfmt.extraArgs": [
"+nightly"
],
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.diagnostics.experimental.enable": true,
"rust-analyzer.server.extraEnv": {
"RUSTUP_TOOLCHAIN": "nightly"
},
"rustowl.underlineThickness": "4"
},
"extensions": {
"recommendations": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"vadimcn.vscode-lldb",
"barbosshack.crates-io",
"wheredoesyourmindgo.gruvbox-concoctis",
"drzix.hc-zenburn-vscode"
]
}
}