style: rustfmt the merged PR #125 hunks and the mirror test; sync Cargo.lock

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
archipelago
2026-08-05 15:24:31 -04:00
co-authored by Claude Fable 5
parent 6668359875
commit 0a374c80a6
3 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ dependencies = [
[[package]]
name = "archipelago"
version = "1.7.123-alpha"
version = "1.7.124-alpha"
dependencies = [
"anyhow",
"archipelago-container",
+3 -6
View File
@@ -856,12 +856,9 @@ impl Server {
// connected now, no LAN direct entry this tick. Escala-
// tion order is LAN → last-known-good → anchor tree;
// a stale candidate costs one bounded failed dial.
let connected =
crate::fips::service::connected_peer_endpoints().await;
let known = crate::fips::endpoints::record_connected(
&data_dir, &connected,
)
.await;
let connected = crate::fips::service::connected_peer_endpoints().await;
let known =
crate::fips::endpoints::record_connected(&data_dir, &connected).await;
let wanted: Vec<String> = reg
.all_peers()
.await
+3 -1
View File
@@ -2403,7 +2403,9 @@ mod tests {
// update; the signature is what makes either source trustworthy.
assert_eq!(list.len(), 2);
assert!(
list[0].url.starts_with("https://source.archipelago-foundation.org/"),
list[0]
.url
.starts_with("https://source.archipelago-foundation.org/"),
"the named origin must be primary, got {}",
list[0].url
);