And something completely different: `rustfmt` puzzles me by reporting different results on linux and macos. I'm running the same version on both systems. But I'm getting different results with respect to presumed line lengths and wrapping. For example, I'm getting things like ``` -const STATUS_STARTUP: [RGB8; 1] = [RGB8::new(STATUS_INTENSITY, STATUS_INTENSITY, STATUS_INTENSITY)]; +const STATUS_STARTUP: [RGB8; 1] = [RGB8::new( + STATUS_INTENSITY, + STATUS_INTENSITY, + STATUS_INTENSITY, +)]; [...] - let mqtt_psk = - Psk { - key: PSK_KEY, - hint: PSK_HINT, - }; + let mqtt_psk = Psk { + key: PSK_KEY, + hint: PSK_HINT, + }; ``` reported on linux which are the exact opposite of the last reports i got on macos and the changes i applied there. Has anyone experienced this too? Does anyone know an explanation for this?