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
I'm trying to update our codebase to the next release, code fails to compile. Usually it's a quick look at the changelog or release merge request, but neither seems to be available. Would be great to have this.
Breaking change was introduced in Unconditionally bound with T: FloatCore. #138 which requires to add a new constraint. Adding constraints is not a problem, but to add it I have to add a new dependency - num-traits which must be the same version (within cargo compatible versions) as ordered-float uses. This would break as soon as num-traits releases a new major version, usual approach is to reexport such traits so constraints can look like this instead:
I'm trying to update our codebase to the next release, code fails to compile. Usually it's a quick look at the changelog or release merge request, but neither seems to be available. Would be great to have this.
Breaking change was introduced in Unconditionally bound with
T: FloatCore
. #138 which requires to add a new constraint. Adding constraints is not a problem, but to add it I have to add a new dependency -num-traits
which must be the same version (within cargo compatible versions) asordered-float
uses. This would break as soon asnum-traits
releases a new major version, usual approach is to reexport such traits so constraints can look like this instead:The text was updated successfully, but these errors were encountered: