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
time has a security advisory which is fixed in v0.3.47. It however requires an MSRV of v1.88. The only crate affected, js-bindgen-runner, already has an MSRV of v1.93, but Cargo's MSRV dependency resolver can't figure this out.
This is a tracking issue for what we should adopt when we bump the MSRV.
Note
Look for
MSRV:comments in the source code when upgrading the MSRV.v1.87
<integer>::cast_un/signed()instead ofascasts.v1.88
timehas a security advisory which is fixed in v0.3.47. It however requires an MSRV of v1.88. The only crate affected,js-bindgen-runner, already has an MSRV of v1.93, but Cargo's MSRV dependency resolver can't figure this out.v1.89
NonNull::from_ref()instead ofptr::from_ref().NonNull::without_provenance()instead ofptr::without_provenance().v1.90
const<[T]>::reverse()instead of manual implementation.v1.91
PanicHookInfo::payload_as_str()instead of manual implementation.v1.93
<[T]>::as_array()to removeunsafecode from the proc-macro output.<[T]>::assume_init_mut()instead of manual conversion.v1.94
Peekable::next_if_map()instead of checking withpeek()and then extracting.v1.95
MaybeUninit<[T; N]>to[MaybeUninit<T>; N]by using the new conversions.