From acbfacea7dcafe431c3cb847a07d8ba803fd52ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Nordstr=C3=B8m?= Date: Sat, 22 Feb 2025 19:13:58 +0100 Subject: [PATCH] Add bin using crate croner. --- src/bin/using-crate-croner.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/bin/using-crate-croner.rs diff --git a/src/bin/using-crate-croner.rs b/src/bin/using-crate-croner.rs new file mode 100644 index 0000000..0e5d99e --- /dev/null +++ b/src/bin/using-crate-croner.rs @@ -0,0 +1,18 @@ +use chrono::Utc; +use croner::Cron; + +fn main() { + // Parse a cron expression to find the next occurrence at 00:00 on Friday + let cron = Cron::new("0 0 * * FRI") + .parse() + .expect("Successful parsing"); + + // Get the next occurrence from the current time, excluding the current time + let next = cron.find_next_occurrence(&Utc::now(), false).unwrap(); + + println!( + "Pattern \"{}\" will match next at {}", + cron.pattern.to_string(), + next + ); +}