Skip to content
Update Rust authored by Miki, Hiromitsu's avatar Miki, Hiromitsu
......@@ -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
......
......