/Learning-Rust

This Repository contains the Rust code and practice code snippets.

Primary LanguageRust

This Repo Contains the Rust code used for learning

To Create a new project

cargo new 'project_name'

To build

cargo build

To build and run

cargo run

To check for any errors (useful when working on a big codebase)

cargo check

To update dependencies/crates

cargo update