Further Understanding Cargo and Crates.io
In Rust, “release profiles” are predefined and customizable sets of settings with different options that allow programmers to control compilation options flexibly. Each profile is independent. Cargo mainly has two profiles: the dev profile used when running cargo build, and the release profile used when running cargo build –release. The dev profile is the default…