Skip to content

Commit

Permalink
Removes transitive dep on time
Browse files Browse the repository at this point in the history
As suggested by @AldaronLau in:
#100
  • Loading branch information
Zack Slayton committed Mar 21, 2022
1 parent 21ef548 commit 03e8ef9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Expand Up @@ -14,7 +14,10 @@ edition = "2021"
name = "cron"

[dependencies]
chrono = "~0.4"
# Disabling default features eliminates a superfluous transitive
# dependency on the `time` crate, which is susceptible to segfaults.
# https://rustsec.org/advisories/RUSTSEC-2020-0071
chrono = { version = "~0.4", default-features = false, features = [] }
nom = "~7"
once_cell = "1.5.2"

Expand Down

0 comments on commit 03e8ef9

Please sign in to comment.