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
This crate currently abuses Ord to get the sorting functions to work on arbitrary keys. Starting with Rust 1.81 this can/will crash the sort function. Consequently the PartialOrd and Ord implementations of the key will need to be adjusted.
This crate currently abuses
Ord
to get the sorting functions to work on arbitrary keys. Starting with Rust 1.81 this can/will crash the sort function. Consequently thePartialOrd
andOrd
implementations of the key will need to be adjusted.See rust-lang/rust#129561
The text was updated successfully, but these errors were encountered: