Remove the unneeded isqrt feature gate

[1] has been stabilized so we no longer need to enable it.

[1]: https://github.com/rust-lang/rust/issues/116226
This commit is contained in:
Trevor Gross 2024-10-30 12:27:59 -05:00
parent fbd6907358
commit 9818afad7c

View file

@ -15,7 +15,6 @@
#![no_std]
#![cfg_attr(f128_enabled, feature(f128))]
#![cfg_attr(f16_enabled, feature(f16))]
#![feature(isqrt)]
pub mod bench;
extern crate alloc;