File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -341,7 +341,8 @@ incremental = true # whether or not incremental compilation is enabled
341
341
overflow-checks = true # use overflow checks for integer arithmetic.
342
342
# Passes the `-C overflow-checks=...` flag to the compiler.
343
343
344
- # The release profile, used for `cargo build --release` (and the dependencies for `cargo test --release`, including the local lib/bin).
344
+ # The release profile, used for `cargo build --release` (and the dependencies
345
+ # for `cargo test --release`, including the local library or binary).
345
346
[profile .release ]
346
347
opt-level = 3
347
348
debug = false
@@ -353,7 +354,8 @@ panic = 'unwind'
353
354
incremental = false
354
355
overflow-checks = false
355
356
356
- # The testing profile, used for `cargo test` (for `cargo test --release` see the `release` and `bench` profiles).
357
+ # The testing profile, used for `cargo test` (for `cargo test --release` see
358
+ # the `release` and `bench` profiles).
357
359
[profile .test ]
358
360
opt-level = 0
359
361
debug = 2
@@ -365,7 +367,8 @@ panic = 'unwind'
365
367
incremental = true
366
368
overflow-checks = true
367
369
368
- # The benchmarking profile, used for `cargo bench` (and the test targets and unit tests for `cargo test --release`).
370
+ # The benchmarking profile, used for `cargo bench` (and the test targets and
371
+ # unit tests for `cargo test --release`).
369
372
[profile .bench ]
370
373
opt-level = 3
371
374
debug = false
You can’t perform that action at this time.
0 commit comments