Rust repository for learning purposes. Step-by-step of "The Rust Programming Language" Book, available in https://doc.rust-lang.org/stable/book
Use "rustop" to do the job
curl https://sh.rustup.rs -sSf | sh
Istall rustfmt to check code style
rustup component add rustfmt
cargo new <project_name>
cargo build
./target/debug/<project_name>
cargo run
cargo check
cargo <command> --release