From 4f8c76c67edfa17719cd62661c7bb172128867be Mon Sep 17 00:00:00 2001 From: archipelago Date: Wed, 5 Aug 2026 15:30:13 -0400 Subject: [PATCH] style: rustfmt the regenerated app_ports list generate-app-catalog.py writes APP_LAUNCH_PORTS one entry per line; rustfmt packs it. The release gate checks formatting, so the generated file has to be formatted after regeneration or every catalog sync fails the gate. Co-Authored-By: Claude Fable 5 --- core/archipelago/src/fips/app_ports.rs | 39 ++------------------------ 1 file changed, 3 insertions(+), 36 deletions(-) diff --git a/core/archipelago/src/fips/app_ports.rs b/core/archipelago/src/fips/app_ports.rs index 1ad284cb..6c483d74 100644 --- a/core/archipelago/src/fips/app_ports.rs +++ b/core/archipelago/src/fips/app_ports.rs @@ -6,40 +6,7 @@ //! no listener, so allowing them is inert. pub const APP_LAUNCH_PORTS: &[u16] = &[ - 2283, - 2342, - 3000, - 3001, - 3002, - 4080, - 5180, - 7778, - 8080, - 8081, - 8082, - 8083, - 8084, - 8085, - 8087, - 8088, - 8089, - 8090, - 8096, - 8123, - 8175, - 8176, - 8240, - 8334, - 8336, - 8888, - 8999, - 9000, - 9100, - 10380, - 11434, - 18081, - 18083, - 23000, - 32838, - 50002, + 2283, 2342, 3000, 3001, 3002, 4080, 5180, 7778, 8080, 8081, 8082, 8083, 8084, 8085, 8087, 8088, + 8089, 8090, 8096, 8123, 8175, 8176, 8240, 8334, 8336, 8888, 8999, 9000, 9100, 10380, 11434, + 18081, 18083, 23000, 32838, 50002, ];