Skip to content

blackshadowsoftwareltd/Rust-Practice

Folders and files

NameName
Last commit message
Last commit date
Jun 2, 2023
Jul 27, 2023
Jun 2, 2023
Jun 26, 2023
Oct 25, 2023
Dec 14, 2023
Jan 27, 2024
Jul 24, 2023
Oct 18, 2023
Sep 4, 2024
Dec 14, 2023
Mar 11, 2023

Repository files navigation

-Rust-Practice

================================================================================

create a new rust project

cargo new rust-playground

================================================================================

add git ignore

touch .gitignore
# Ignore compiled binary files
target/
# Ignore compiled files
*.rs.bk
# Ignore Cargo.lock file
Cargo.lock

# Ignore editor backup files
*~

================================================================================

add clippy

rustup component add clippy

add cargo-watch. This will watch for changes and run the project

cargo install cargo-watch

Run the project with quietly compile (qc)

cargo-watch -qc -x run -x clippy

Releases

No releases published

Packages

No packages published

Languages