mirror of
https://github.com/mainmatter/100-exercises-to-learn-rust
synced 2024-11-16 19:50:44 +01:00
Update 08_overflow.md
if you read threw the profile docs it provides 4 profiles. https://doc.rust-lang.org/cargo/reference/profiles.html
This commit is contained in:
parent
bd17a59e8e
commit
f14a047e8b
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ You may be wondering—what is a profile setting? Let's get into that!
|
|||
A [**profile**](https://doc.rust-lang.org/cargo/reference/profiles.html) is a set of configuration options that can be
|
||||
used to customize the way Rust code is compiled.
|
||||
|
||||
Cargo provides two built-in profiles: `dev` and `release`.\
|
||||
Cargo provides 4 built-in profiles: `dev`, `release`, `test`, and `bench`.\
|
||||
The `dev` profile is used every time you run `cargo build`, `cargo run` or `cargo test`. It's aimed at local
|
||||
development,
|
||||
therefore it sacrifices runtime performance in favor of faster compilation times and a better debugging experience.\
|
||||
|
|
Loading…
Reference in a new issue