You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use goose in our project and during cargo deny check we found out that goose use chrono dependency, which has security vulnerability. Here is detailed description: https://rustsec.org/advisories/RUSTSEC-2020-0071
Solution is very simple:
Update dependency for chrono to next chrono = { version = "0.4", default-features = false, features = ["clock"] }
Do you mind to do that? Thanks.
Regards, Sergii.
The text was updated successfully, but these errors were encountered:
Hey!
We use goose in our project and during
cargo deny check
we found out that goose use chrono dependency, which has security vulnerability. Here is detailed description: https://rustsec.org/advisories/RUSTSEC-2020-0071Solution is very simple:
Update dependency for chrono to next
chrono = { version = "0.4", default-features = false, features = ["clock"] }
Do you mind to do that? Thanks.
Regards, Sergii.
The text was updated successfully, but these errors were encountered: