Rust : インストール2025/09/30 |
|
Rust をインストールします。 |
|
| [1] | Rust のインストールと動作確認です。 |
|
root@dlp:~#
apt -y install rust-all
root@dlp:~#
rustc --version rustc 1.85.0 (4d91de4e4 2025-02-17) (built from a source tarball) # テストプログラムを作成して動作確認 root@dlp:~# mkdir rust-test root@dlp:~# cd rust-test
root@dlp:~/rust-test# cat > hello-rust.rs <<'EOF'
fn main() {
println!("Hello Rust world !");
}
EOF
root@dlp:~/rust-test#
rustc hello-rust.rs root@dlp:~/rust-test# ./hello-rust Hello Rust world ! # Cargo で Hello World 動作確認 root@dlp:~# cargo --version cargo 1.85.0 (d73d2caf9 2024-12-31) cargo new cargo-test --bin
Creating binary (application) `cargo-test` package
note: see more `Cargo.toml` keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
root@dlp:~# cd cargo-test root@dlp:~/cargo-test# cargo build
Compiling cargo-test v0.1.0 (/root/cargo-test)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.25s
root@dlp:~/cargo-test# cargo run
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.00s
Running `target/debug/cargo-test`
Hello, world!
|