From f68a38a7b1ac8d1e726f653a520d3340c4adb51a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 13:00:29 +0000 Subject: [PATCH] fix(deps): update rust crate cron to 0.17.0 --- Cargo.lock | 16 ++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1623a93..6bbec8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -176,7 +176,7 @@ checksum = "e1536e0af43d92eda2b6df260879861e59e913ea60e0b0388ae48ac43138a5ad" dependencies = [ "apalis-core", "chrono", - "cron", + "cron 0.16.0", "futures-util", "serde", "ulid", @@ -1385,6 +1385,18 @@ dependencies = [ "winnow 0.7.15", ] +[[package]] +name = "cron" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5dcd6f69605c2956916ce24e8af637b754964c9a83f4662d3a2361654cdba09" +dependencies = [ + "chrono", + "once_cell", + "phf 0.11.3", + "winnow 0.7.15", +] + [[package]] name = "crossbeam-queue" version = "0.3.12" @@ -3368,7 +3380,7 @@ dependencies = [ "base16ct 1.0.0", "chrono", "clap", - "cron", + "cron 0.17.0", "dotenvy", "futures", "hmac 0.13.0", diff --git a/Cargo.toml b/Cargo.toml index 300faec..8ccb3cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ axum = { version = "0.8.9", features = ["ws"] } axum-governor = "2.0.2" clap = { version = "4.6.1", features = ["derive", "wrap_help"] } chrono = { version = "0.4.44", features = ["serde"] } -cron = "0.16.0" +cron = "0.17.0" base16ct = { version = "1.0.0", features = ["alloc"] } futures = "0.3.32" hmac = "0.13.0"