Changes
Page history
Update Rust
authored
Nov 07, 2023
by
Miki, Hiromitsu
Show whitespace changes
Inline
Side-by-side
Rust.md
View page @
cc2ca8b2
...
...
@@ -17,9 +17,22 @@
### Extension
VSCode で Rust 開発を行う場合、以下 2 つの拡張機能があるとよい。
-
rust-analyzer (rust-lang.rust-analyzer)
-
CodeLLDB (vadimcn.vscode-lldb)
プロジェクトに設定する場合、以下の内容でファイル
`.vscode/extensions.json`
を作成しておくとよい。
```
jsonc
{
// List of extensions which should be recommended for users of this workspace.
"recommendations"
:
[
"rust-lang.rust-analyzer"
,
"vadimcn.vscode-lldb"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations"
:
[]
}
```
## Develop
### Create new project
...
...
...
...