@@ -391,83 +391,9 @@ information on the `[dependencies]`, `[dev-dependencies]`,
391
391
392
392
### The ` [profile.*] ` sections
393
393
394
- Cargo supports custom configuration of how rustc is invoked through profiles at
395
- the top level. Any manifest may declare a profile, but only the top level
396
- package’s profiles are actually read. All dependencies’ profiles will be
397
- overridden. This is done so the top-level package has control over how its
398
- dependencies are compiled.
399
-
400
- There are four currently supported profile names, all of which have the same
401
- configuration available to them. Listed below is the configuration available,
402
- along with the defaults for each profile.
403
-
404
- ``` toml
405
- # The development profile, used for `cargo build`.
406
- [profile .dev ]
407
- opt-level = 0 # controls the `--opt-level` the compiler builds with.
408
- # 0-1 is good for debugging. 2 is well-optimized. Max is 3.
409
- # 's' attempts to reduce size, 'z' reduces size even more.
410
- debug = true # (u32 or bool) Include debug information (debug symbols).
411
- # Equivalent to `-C debuginfo=2` compiler flag.
412
- rpath = false # controls whether compiler should set loader paths.
413
- # If true, passes `-C rpath` flag to the compiler.
414
- lto = false # Link Time Optimization usually reduces size of binaries
415
- # and static libraries. Increases compilation time.
416
- # If true, passes `-C lto` flag to the compiler, and if a
417
- # string is specified like 'thin' then `-C lto=thin` will
418
- # be passed.
419
- debug-assertions = true # controls whether debug assertions are enabled
420
- # (e.g., debug_assert!() and arithmetic overflow checks)
421
- codegen-units = 16 # if > 1 enables parallel code generation which improves
422
- # compile times, but prevents some optimizations.
423
- # Passes `-C codegen-units`.
424
- panic = ' unwind' # panic strategy (`-C panic=...`), can also be 'abort'
425
- incremental = true # whether or not incremental compilation is enabled
426
- # This can be overridden globally with the CARGO_INCREMENTAL
427
- # environment variable or `build.incremental` config
428
- # variable. Incremental is only used for path sources.
429
- overflow-checks = true # use overflow checks for integer arithmetic.
430
- # Passes the `-C overflow-checks=...` flag to the compiler.
431
-
432
- # The release profile, used for `cargo build --release` (and the dependencies
433
- # for `cargo test --release`, including the local library or binary).
434
- [profile .release ]
435
- opt-level = 3
436
- debug = false
437
- rpath = false
438
- lto = false
439
- debug-assertions = false
440
- codegen-units = 16
441
- panic = ' unwind'
442
- incremental = false
443
- overflow-checks = false
444
-
445
- # The testing profile, used for `cargo test` (for `cargo test --release` see
446
- # the `release` and `bench` profiles).
447
- [profile .test ]
448
- opt-level = 0
449
- debug = 2
450
- rpath = false
451
- lto = false
452
- debug-assertions = true
453
- codegen-units = 16
454
- panic = ' unwind'
455
- incremental = true
456
- overflow-checks = true
457
-
458
- # The benchmarking profile, used for `cargo bench` (and the test targets and
459
- # unit tests for `cargo test --release`).
460
- [profile .bench ]
461
- opt-level = 3
462
- debug = false
463
- rpath = false
464
- lto = false
465
- debug-assertions = false
466
- codegen-units = 16
467
- panic = ' unwind'
468
- incremental = false
469
- overflow-checks = false
470
- ```
394
+ The ` [profile] ` tables provide a way to customize compiler settings such as
395
+ optimizations and debug settings. See [ the Profiles chapter] ( profiles.md ) for
396
+ more detail.
471
397
472
398
### The ` [features] ` section
473
399
0 commit comments