Question Details

No question body available.

Tags

rust rust-cargo

Answers (1)

April 14, 2026 Score: 1 Rep: 7,427 Quality: Low Completeness: 80%

Per @kmdreko, the answer is right on the linked page! 😳

I think the values published in the The Cargo Book still match what is defined in the cargo source code.

Reprinted here

[profile.dev]
opt-level = 0
debug = true
split-debuginfo = '...'  # Platform-specific.
strip = "none"
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false

[profile.release] opt-level = 3 debug = false split-debuginfo = '...' # Platform-specific. strip = "none" debug-assertions = false overflow-checks = false lto = false panic = 'unwind' incremental = false codegen-units = 16 rpath = false