Skip to content

Commit

Permalink
fix: drop old time 0.1.44 dep
Browse files Browse the repository at this point in the history
chrono 0.4's default features include the `oldtime` feature which pulls in time 0.1.44.
This is an unmaintained version with soundness issues (time-rs/time#293) and is rarely needed.
If downstream users require this dependency, they can enable the feature themselves.
  • Loading branch information
codahale authored and abonander committed Mar 15, 2023
1 parent cf3ce13 commit bce16a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 28 deletions.
34 changes: 7 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ sqlx = { version = "=0.7.0-alpha.1", path = "." }
# These are optional unless enabled in a workspace crate.
bigdecimal = "0.3.0"
bit-vec = "0.6.3"
chrono = "0.4.22"
chrono = { version = "0.4.22", default-features = false }
ipnetwork = "0.20.0"
mac_address = "1.1.3"
rust_decimal = "1.26.1"
Expand Down

0 comments on commit bce16a5

Please sign in to comment.