From 5a1ce2f20ab3142caaf9fbf7955aa42e6001675c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Nordstr=C3=B8m?= Date: Sat, 22 Feb 2025 20:06:35 +0100 Subject: [PATCH] Fix some clippy complaints. --- src/bin/using-crate-cron_tab-async.rs | 12 ++++++++---- src/bin/using-crate-cron_tab-sync.rs | 3 ++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/bin/using-crate-cron_tab-async.rs b/src/bin/using-crate-cron_tab-async.rs index d31d704..8de68d8 100644 --- a/src/bin/using-crate-cron_tab-async.rs +++ b/src/bin/using-crate-cron_tab-async.rs @@ -6,10 +6,13 @@ use tokio::sync::Mutex; #[tokio::main] async fn main() { - let local_tz = Local::from_offset(&FixedOffset::east(7)); + let local_tz = + Local::from_offset(&FixedOffset::east_opt(7).expect("Failed to init fixed offset")); let mut cron = AsyncCron::new(local_tz); - let first_job_id = cron.add_fn("* * * * * *", print_now).await; + cron.add_fn("* * * * * *", print_now) + .await + .expect("Failed to add fn 'print_now'."); cron.start().await; @@ -23,12 +26,13 @@ async fn main() { println!("{} counter value: {}", now, counter); } }) - .await; + .await + .expect("Failed to add using closure"); std::thread::sleep(std::time::Duration::from_secs(10)); // stop cron - cron.stop(); + cron.stop().await; } async fn print_now() { diff --git a/src/bin/using-crate-cron_tab-sync.rs b/src/bin/using-crate-cron_tab-sync.rs index 98d2650..c911282 100644 --- a/src/bin/using-crate-cron_tab-sync.rs +++ b/src/bin/using-crate-cron_tab-sync.rs @@ -2,7 +2,8 @@ use chrono::{FixedOffset, Local, TimeZone}; use cron_tab; fn main() { - let local_tz = Local::from_offset(&FixedOffset::east(7)); + let local_tz = + Local::from_offset(&FixedOffset::east_opt(7).expect("Failed to init fixed offset")); let mut cron = cron_tab::Cron::new(local_tz); let first_job_id = cron.add_fn("* * * * * * *", print_now).unwrap();