Rustをインストールする
Rustupをインストールする(インストーラ)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
select install type
- Proceed with standard installation (default - just press enter)
vscode拡張機能
- Remote Development
- rust-analyzer
- CodeLLDB
rustをバージョンアップ
rustup toolchain add stable # stable版を追加(2204/5/1時点で1.77.2)
rustup toolchain add nightly # nightlyを追加
rustup toolchain add 1.77 # Rust 1.77を追加
プロジェクト作成
cargo new hoge
ライブラリ追加
cargo add nix
ツールチェインのバージョンを確認
rustup show
ツールチェインのバージョンを固定
rust-toolchain.toml
[toolchain]
channel = "1.66.0"
components = ["rustc", "cargo"]
profile = "minimal"
targets = []