This is a basic repo with some rust notes and codes. Just for fun and learning.
cargo new hello_worldThis will create a new folder, with a file called Cargo.toml which contains the metadata of the project and used dependencies. Also a src folder with the source code of the project.
cargo runThe packages available for rust can be find in Crates
Add the name of the package and version in Cargo.toml file on [Dependencies] section.