summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog.md1
-rw-r--r--rust-rustfmt.el2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index cadbbf5..bea46db 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,6 @@
# Unreleased
+- Update rustfmt's defaults to use 2024 edition ([#566](https://github.com/rust-lang/rust-mode/issues/509)).
- Update rustfmt's defaults to use 2021 edition ([#554](https://github.com/rust-lang/rust-mode/issues/509)).
- Introduce `rust-format-mode` for `rust-format-buffer` ([#556](https://github.com/rust-lang/rust-mode/pull/556)).
diff --git a/rust-rustfmt.el b/rust-rustfmt.el
index 04dce45..6fb0e87 100644
--- a/rust-rustfmt.el
+++ b/rust-rustfmt.el
@@ -33,7 +33,7 @@
:type 'string
:group 'rust-mode)
-(defcustom rust-rustfmt-switches '("--edition" "2021")
+(defcustom rust-rustfmt-switches '("--edition" "2024")
"Arguments to pass when invoking the `rustfmt' executable."
:type '(repeat string)
:group 'rust-mode)