style: cargo fmt — fix formatting drift blocking the release gate

Whitespace-only reflow in storage.rs/seed.rs/update.rs (rustfmt line-
wrapping rules) and app_ports.rs (array literal reflow after the port
list grew). No logic change. tests/release/run.sh's cargo-fmt --check
stage was failing on this before v1.7.119-alpha could be cut.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
archipelago
2026-07-31 12:15:19 -04:00
co-authored by Claude Opus 5
parent 09ab5f6b11
commit 37d293be59
4 changed files with 25 additions and 41 deletions
+8 -4
View File
@@ -590,9 +590,10 @@ mod tests {
let dir_a = dir.path().to_path_buf();
let dir_b = dir.path().to_path_buf();
let add_task = tokio::spawn(async move {
add_node(&dir_a, make_node("did:key:zB", "b.onion")).await
});
let add_task =
tokio::spawn(
async move { add_node(&dir_a, make_node("did:key:zB", "b.onion")).await },
);
let trust_task = tokio::spawn(async move {
set_trust_level(&dir_b, "did:key:zA", TrustLevel::Observer).await
});
@@ -703,7 +704,10 @@ mod tests {
assert!(result.is_empty(), "returned Vec must be empty");
let nodes = load_nodes(dir.path()).await.unwrap();
assert!(nodes.is_empty(), "load_nodes must return an empty Vec, not an error");
assert!(
nodes.is_empty(),
"load_nodes must return an empty Vec, not an error"
);
let removed = load_removed_dids(dir.path()).await.unwrap();
assert!(