Closed jcornaz closed 1 year ago
Fixed: No longer transitively depend on time 0.1
time
Hi,
eventstore is depending on chrono with default features enabled, which transitively depends on the crate time 0.1 that has a known vulnerability: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26235
eventstore
chrono
time 0.1
But, as far as I can see, eventstore does not need the oldtime feature enabled by default by chrono, and could therefore remove the transitive dependency on the vulnerable crate time 0.1 by disabling the default features of chrono.
oldtime
Thanks @jcornaz for your contribution and sorry for just spotting your PR.
Fixed: No longer transitively depend on
time
0.1Hi,
eventstore
is depending onchrono
with default features enabled, which transitively depends on the cratetime 0.1
that has a known vulnerability: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26235But, as far as I can see,
eventstore
does not need theoldtime
feature enabled by default by chrono, and could therefore remove the transitive dependency on the vulnerable cratetime 0.1
by disabling the default features of chrono.