fix: Enable std feature for log and remove clock history

Co-authored-by: aider (gemini/gemini-2.5-pro-preview-05-06) <aider@aider.chat>
This commit is contained in:
Chaos Rogers 2025-07-28 23:39:01 +01:00
parent 5a86493824
commit 985ccc6819
4 changed files with 1 additions and 10 deletions

View file

@ -27,7 +27,6 @@ struct ApiStatus {
ntp_active: bool,
interfaces: Vec<String>,
hardware_offset_ms: i64,
clock_delta_history: Vec<i64>,
}
// AppState to hold shared data
@ -79,8 +78,6 @@ async fn get_status(data: web::Data<AppState>) -> impl Responder {
.map(|ifa| ifa.ip().to_string())
.collect();
let clock_delta_history: Vec<i64> = state.clock_delta_history.iter().cloned().collect();
HttpResponse::Ok().json(ApiStatus {
ltc_status,
ltc_timecode,
@ -94,7 +91,6 @@ async fn get_status(data: web::Data<AppState>) -> impl Responder {
ntp_active,
interfaces,
hardware_offset_ms: hw_offset_ms,
clock_delta_history,
})
}
@ -233,7 +229,6 @@ mod tests {
assert_eq!(resp.ltc_timecode, "01:02:03:04");
assert_eq!(resp.frame_rate, "25.00fps");
assert_eq!(resp.hardware_offset_ms, 10);
assert_eq!(resp.clock_delta_history, vec![4, 5, 6]);
}
#[actix_web::test]