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
# Objective
- Replace `num_integer::div_ceil` with the standard `div_ceil`.
- Closes#544
# Solution
[Rust 1.73.0 stabilized div_ceil for unsigned
integers.](https://blog.rust-lang.org/2023/10/05/Rust-1.73.0.html#stabilized-apis)
- Replaces `num_integer::div_ceil` with the standard `div_ceil`.
- Removes `num-integer` crate as a dependency because it is no longer
used.
Describe the problem related to your feature request.
Rust 1.73.0 stabilized
div_ceil
for unsigned integers.What solution would you like?
Replace
num_integer::div_ceil
with the standarddiv_ceil
.What alternative(s) have you considered?
Additional context
The text was updated successfully, but these errors were encountered: