mirror of
https://github.com/samvallad33/vestige.git
synced 2026-05-08 15:22:37 +02:00
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:
parent
9bdcc69ce3
commit
85fcaedcef
46 changed files with 436 additions and 19 deletions
|
|
@ -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?;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue