From 768d5c877e2bce5730d5f263ca0a4b7437eea9e9 Mon Sep 17 00:00:00 2001 From: Ember Date: Fri, 8 May 2026 16:35:20 -0700 Subject: [PATCH] updated wifi-station dependency to use version published to crates.io (#1022) * updated wifi-station dependency to use version published to crates.io * drop unrelated windows-core downgrade from lockfile --- Cargo.lock | 3 ++- daemon/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 78d102d..639c847 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7136,7 +7136,8 @@ checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d" [[package]] name = "wifi-station" version = "0.10.1" -source = "git+https://github.com/BeigeBox/wifi-station?rev=e8ec5b4#e8ec5b491fa125bf5346b6aa84f13ed51de33044" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eb84ca59dc42c3818d652f7bbd0715abe3bc8f74d160831e865b3946d39fc19" dependencies = [ "anyhow", "chrono", diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index a593b89..aaf5b49 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -21,7 +21,7 @@ apidocs = ["dep:utoipa", "wifi-station/utoipa"] [dependencies] rayhunter = { path = "../lib" } -wifi-station = { git = "https://github.com/BeigeBox/wifi-station", rev = "e8ec5b4" } +wifi-station = "0.10.1" toml = "0.8.8" serde = { version = "1.0.193", features = ["derive"] } tokio = { version = "1.44.2", default-features = false, features = ["fs", "signal", "process", "rt"] }