Created at: 2025-02-27
The command to create a new project is:
cargo new project_name
It will:
git and add a basic .gitignore.src folder with a main.rs inside.Cargo.toml with the following content:[package]
name = "project_name"
version = "0.1.0"
edition = "2024"