Skip to content

Commit

Permalink
Stabilize 2024 flag
Browse files Browse the repository at this point in the history
The 2024 edition is now stable on nightly, so the `-Z` flag is no longer necessary.
  • Loading branch information
ehuss committed Nov 23, 2024
1 parent d107843 commit 42f18d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/book/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ impl MDBook {
cmd.args(["--edition", "2021"]);
}
RustEdition::E2024 => {
cmd.args(["--edition", "2024", "-Zunstable-options"]);
cmd.args(["--edition", "2024"]);
}
}
}
Expand Down

0 comments on commit 42f18d1

Please sign in to comment.