New Rust application
Description
For this project we'll be using Rust. If you don't have it installed,
follow these instructions. The cargo
command should be
on your path after installation.
The files in this commit were created with cargo new
and cargo run
:
$ cargo new iridium
$ cd iridium
$ cargo run
Hello, world!
Commands
git clone git@github.com:atsheehan/iridium
cd iridium
git checkout b8b7480a9d27e61947df1052f95ae7a1bea04bf2
cargo run --release
Code Changes
Added .gitignoreGitHub
1+ /target
1+ /target
Added Cargo.lockGitHub
Hiding contents due to file size.
Added Cargo.tomlGitHub
1+ [package]2+ name = "iridium"3+ version = "0.1.0"4+ edition = "2021"5+ 6+ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html7+ 8+ [dependencies]
1+ [package]2+ name = "iridium"3+ version = "0.1.0"4+ edition = "2021"5+ 6+ # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html7+ 8+ [dependencies]
Added src/main.rsGitHub
1+ fn main() {2+ println!("Hello, world!");3+ }
1+ fn main() {2+ println!("Hello, world!");3+ }