VOOZH about

URL: https://qiita.com/ueki5/items/1d0e57ed03e4857bf0cd

⇱ Rust #Rust - Qiita


👁 Image
2

Go to list of users who liked

0

Share on X(Twitter)

Share on Facebook

Add to Hatena Bookmark

More than 1 year has passed since last update.

Rust

2
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

Go to list of users who liked

0
0

Go to list of comments

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

Go to list of users who liked

0