Rust バージョンを確認する
Rustで、バージョンを確認する手順を記述してます。
環境
- OS windows11 home
- rustc 1.62.0
バージョンを確認
バージョンを確認するには、以下のコマンドで可能です。
> rustc -V
rustc 1.62.0 (a8314ef7d 2022-06-27)
Rustのビルドツールおよびパッケージ管理ツールである「cargo」のバージョンは、以下で確認できます。
> cargo -V
cargo 1.62.0 (a748cf5a3 2022-06-08)
管理ツールである「rustup」は、以下で確認できます。
> rustup -V
rustup 1.25.1 (bb60b1e89 2022-07-12)
info: This is the version for the rustup toolchain manager, not the rustc compiler.
info: The currently active `rustc` version is `rustc 1.62.0 (a8314ef7d 2022-06-27)`
また「rustup show」で、有効なツールチェインが確認できます。
> rustup show
Default host: x86_64-pc-windows-msvc
rustup home: C:\Users\testuser\.rustup
stable-x86_64-pc-windows-msvc (default)
rustc 1.62.0 (a8314ef7d 2022-06-27)
-
前の記事
kotlin エラー「error: ‘when’ expression must be exhaustive, add necessary ‘xxx’ branch or ‘else’ branch instead」の解決方法 2022.07.16
-
次の記事
Redis リストから指定した値を削除する 2022.07.16
コメントを書く