Stabilize 2024 flag

The 2024 edition is now stable on nightly, so the `-Z` flag is no longer necessary.
This commit is contained in:
Eric Huss 2024-11-23 15:25:29 -08:00
parent d1078434af
commit 42f18d1e51

View file

@ -346,7 +346,7 @@ impl MDBook {
cmd.args(["--edition", "2021"]);
}
RustEdition::E2024 => {
cmd.args(["--edition", "2024", "-Zunstable-options"]);
cmd.args(["--edition", "2024"]);
}
}
}