File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 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
341341overflow-checks = true # use overflow checks for integer arithmetic.
342342 # Passes the `-C overflow-checks=...` flag to the compiler.
343343
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).
345346[profile .release ]
346347opt-level = 3
347348debug = false
@@ -353,7 +354,8 @@ panic = 'unwind'
353354incremental = false
354355overflow-checks = false
355356
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).
357359[profile .test ]
358360opt-level = 0
359361debug = 2
@@ -365,7 +367,8 @@ panic = 'unwind'
365367incremental = true
366368overflow-checks = true
367369
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`).
369372[profile .bench ]
370373opt-level = 3
371374debug = false
You can’t perform that action at this time.
0 commit comments