2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Rust

Last updated at Posted at 2024-03-18

Rustをインストールする

Rustupをインストールする(インストーラ)

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

select install type

  1. 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 = []
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?