fix: resolve CI failures — clippy lint + lockfile sync

- unwrap_or_else → unwrap_or for constant IpAddr (Rust 1.93 clippy)
- Update pnpm-lock.yaml with vitest/playwright dev deps
- Rebuild dashboard build/ artifacts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sam Valladares 2026-03-03 14:20:37 -06:00
parent 9bdcc69ce3
commit 85fcaedcef
46 changed files with 436 additions and 19 deletions

View file

@ -116,7 +116,7 @@ pub async fn start_http_transport(
let bind_addr: std::net::IpAddr = std::env::var("VESTIGE_HTTP_BIND")
.ok()
.and_then(|s| s.parse().ok())
.unwrap_or_else(|| std::net::IpAddr::V4(std::net::Ipv4Addr::LOCALHOST));
.unwrap_or(std::net::IpAddr::V4(std::net::Ipv4Addr::LOCALHOST));
let addr = std::net::SocketAddr::from((bind_addr, port));
let listener = tokio::net::TcpListener::bind(addr).await?;