プライベートな連絡先の最初の情報
送料メール:
2024-07-12
한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina
環境
rust: 1.79.0(2024-06-13)
ウィンドウズ:
https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe
ユニックス:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
ウィンドウズ:
https://static.rust-lang.org/dist/rust-1.79.0-x86_64-pc-windows-msvc.msi
リナックス:
https://static.rust-lang.org/dist/rust-1.79.0-x86_64-unknown-linux-gnu.tar.xz
マックOS:
https://static.rust-lang.org/dist/rust-1.79.0-x86_64-apple-darwin.pkg
$ rustc -V
rustc 1.79.0
cargo new hello_world
$ cargo build
$ rustc src/main.rs
$ ./target/debug/hello_world
Hello, world!
[ユーザーマニュアル (rust-analyzer.github.io)
次の内容を $CARGO_HOME/config に追加します
[source.crates-io]
replace-with = 'mirror'
[source.mirror]
registry = "https://mirrors.tuna.tsinghua.edu.cn/git/crates.io-index.git"
注記:$CARGO_HOME
: Windows システムのデフォルトは次のとおりです。%USERPROFILE%.cargo
、Unix 系システムのデフォルトは次のとおりです。$HOME/.cargo
参照: