Address RUSTSEC-2021-0139, RUSTSEC-2024-0375, RUSTSEC-2025-0119, RUSTSEC-2024-0320, RUSTSEC-2021-0145, RUSTSEC-2025-0023#694
Merged
coffee-cup merged 1 commit intorailwayapp:masterfrom Nov 26, 2025
Conversation
jzeuzs
commented
Nov 19, 2025
Comment on lines
-259
to
+265
| let description = | ||
| cron_descriptor::cronparser::cron_expression_descriptor::get_description_cron(cron) | ||
| .expect("cron is not valid"); | ||
| let description = Cron::from_str(cron) | ||
| .expect("Failed to parse cron expression") | ||
| .describe(); | ||
|
|
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Fixes the following security vulnerabilities:
RUSTSEC-2021-0139- fixed by replacingcron-descriptorby updatingcronerto3.0.1which has the functionality that we use in the former crate.RUSTSEC-2024-0375- same fix asRUSTSEC-2021-0139, but more on the crate itself using outdated dependenciesRUSTSEC-2025-0119- fixed by updatingindicatifto its latest version. Refer to Switch dep number_prefix to unit_prefix console-rs/indicatif#709RUSTSEC-2024-0320- same fix asRUSTSEC-2021-0139RUSTSEC-2021-0145- same fix asRUSTSEC-2021-0139RUSTSEC-2025-0023- fixed by updatingtokioto its latest version. Refer to sync: fix cloning value when receiving from broadcast channel tokio-rs/tokio#7232Detected by running
cargo audit.Resolves #693, #650, #651, and #649.