style: cargo fmt --all under rustfmt 1.9 (Rust 1.96)

Comment reflow only — the pinned "stable" channel moved and CI checks
formatting with the current toolchain.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 12:28:13 +00:00
parent 7f234420c7
commit 60ccbfdcf7
4 changed files with 30 additions and 12 deletions
+6 -1
View File
@@ -46,7 +46,12 @@ pub fn advertise_native(
props.insert("fp".into(), fingerprint.to_string());
props.insert(
"pair".into(),
if require_pairing { "required" } else { "optional" }.into(),
if require_pairing {
"required"
} else {
"optional"
}
.into(),
);
props.insert("id".into(), uniqueid.to_string());
let service = ServiceInfo::new(NATIVE_SERVICE, hostname, &host_name, ip, port, props)