@@ -202,15 +202,15 @@ changelog-seen = 2
202202# You can use "$ROOT" to indicate the root of the git repository.
203203# build-dir = "build"
204204
205- # Instead of downloading the src/stage0.txt version of Cargo specified, use
205+ # Instead of downloading the src/stage0.json version of Cargo specified, use
206206# this Cargo binary instead to build all Rust code
207207# cargo = "/path/to/cargo"
208208
209- # Instead of downloading the src/stage0.txt version of the compiler
209+ # Instead of downloading the src/stage0.json version of the compiler
210210# specified, use this rustc binary instead as the stage0 snapshot compiler.
211211# rustc = "/path/to/rustc"
212212
213- # Instead of download the src/stage0.txt version of rustfmt specified,
213+ # Instead of download the src/stage0.json version of rustfmt specified,
214214# use this rustfmt binary instead as the stage0 snapshot rustfmt.
215215# rustfmt = "/path/to/rustfmt"
216216
@@ -423,6 +423,18 @@ changelog-seen = 2
423423# set this value to `true`.
424424# debug-logging = rust.debug-assertions (boolean)
425425
426+ # Whether or not overflow checks are enabled for the compiler and standard
427+ # library.
428+ #
429+ # Defaults to rust.debug value
430+ # overflow-checks = rust.debug (boolean)
431+
432+ # Whether or not overflow checks are enabled for the standard library.
433+ # Overrides the `overflow-checks` option, if defined.
434+ #
435+ # Defaults to rust.overflow-checks value
436+ # overflow-checks-std = rust.overflow-checks (boolean)
437+
426438# Debuginfo level for most of Rust code, corresponds to the `-C debuginfo=N` option of `rustc`.
427439# `0` - no debug info
428440# `1` - line tables only - sufficient to generate backtraces that include line
0 commit comments