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
In the Rust compiler and standard library we're planning to limit the width and precision formatting options to a u16. This means that, in a future version of Rust, this line will panic when max_len is larger than u16::MAX:
This is the only code we found on all of Crates.io and GitHub that triggers the new runtime panic. This is a heads-up to give you the time to adjust your code. Apologies for breaking your code.