cargo build
202307031824
Status: #idea
Tags: Rust
cargo build
- Cargo only rebuilds a project, if the source files have changed
Building for Release
cargo build --releaseis used- Executable is created in
target/releaseinstead oftarget/debug - Applies optimisations to make code run faster
- Increases compile-time for the program