# Stable options only, pinned rather than left to the toolchain's defaults.
# Several of these have flipped across rustfmt minor releases, and a silent
# reformat of the whole crate on a toolchain bump is not a diff anyone wants to
# review.
= "2024"
# RFC 3338 decouples formatting style from the parser edition. The 2024 style
# edition is what gives version-sorted imports and last-argument hugging.
= "2024"
= 100
= false
= 4
# Default is per-file detection, which introduces CRLF the first time someone
# edits on Windows.
= "Unix"
= "Default"
= true
= true
= true
= true
# Always spell the ABI out. In a crate that is mostly an FFI seam, `extern "C"`
# is a load-bearing detail and not a stylistic one.
= true
= "Tall"
= "Never"
# Adding a match arm should be a one-line diff, not a rewrite of the arm above it.
= true
= true
= true