Getting Started
Dev
cargo new- create a new projectcargo build- compile a project and build the binarycargo run- docargo buildfirst then run the binary/artifactcargo check- only compile a project without building a binary/artifact- binary/artifact by default is created under
<project>/target/debug/
Release
cargo build --releasecompile with optimizations to create a release artifact
test more content