From dedcc76df09dd2abfa11a93fb56c15d0130361b3 Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Fri, 22 Dec 2023 15:16:03 -0500 Subject: [PATCH] Mild cleanups --- fitnesstrax/app/Cargo.toml | 2 +- fitnesstrax/app/src/main.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/fitnesstrax/app/Cargo.toml b/fitnesstrax/app/Cargo.toml index 387cc34..b450f5d 100644 --- a/fitnesstrax/app/Cargo.toml +++ b/fitnesstrax/app/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] adw = { version = "0.5", package = "libadwaita", features = [ "v1_2" ] } -async-channel = "2.1.1" +async-channel = { version = "2.1" } emseries = { path = "../../emseries" } ft-core = { path = "../core" } gio = { version = "0.18" } diff --git a/fitnesstrax/app/src/main.rs b/fitnesstrax/app/src/main.rs index 7f91f5f..c78a69b 100644 --- a/fitnesstrax/app/src/main.rs +++ b/fitnesstrax/app/src/main.rs @@ -457,7 +457,6 @@ fn main() { let _ = app_tx.send(AppInvocation::RequestRecords).await; while let Ok(response) = ui_rx.recv().await { - println!("response received: {:?}", response); window.process_response(response); } });