Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit dd16892

Browse files
committed
Add cr_log from core-math
1 parent f591003 commit dd16892

File tree

2 files changed

+4277
-2
lines changed

2 files changed

+4277
-2
lines changed

src/lib.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! libm in pure Rust
22
#![no_std]
3-
#![cfg_attr(feature = "unstable", allow(internal_features))]
4-
#![cfg_attr(feature = "unstable", feature(core_intrinsics))]
3+
// #![cfg_attr(feature = "unstable", allow(internal_features))]
4+
// #![cfg_attr(feature = "unstable", feature(core_intrinsics))]
55
#![allow(clippy::assign_op_pattern)]
66
#![allow(clippy::deprecated_cfg_attr)]
77
#![allow(clippy::eq_op)]
@@ -11,6 +11,8 @@
1111
#![allow(clippy::mixed_case_hex_literals)]
1212
#![allow(clippy::needless_return)]
1313
#![allow(clippy::unreadable_literal)]
14+
#![allow(internal_features)]
15+
#![feature(core_intrinsics)]
1416

1517
mod libm_helper;
1618
mod math;

0 commit comments

Comments
 (0)