Skip to content

Commit

Permalink
Merge pull request #321 from tgross35/deny-only-in-ci
Browse files Browse the repository at this point in the history
Don't deny warnings in lib.rs
  • Loading branch information
tgross35 authored Oct 26, 2024
2 parents 52a82c5 + 8b10406 commit 5603a53
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
//! libm in pure Rust
#![deny(warnings)]
#![no_std]
#![cfg_attr(feature = "unstable", allow(internal_features))]
#![cfg_attr(feature = "unstable", feature(core_intrinsics))]
#![allow(clippy::unreadable_literal)]
#![allow(clippy::many_single_char_names)]
#![allow(clippy::needless_return)]
#![allow(clippy::int_plus_one)]
#![allow(clippy::assign_op_pattern)]
#![allow(clippy::deprecated_cfg_attr)]
#![allow(clippy::mixed_case_hex_literals)]
#![allow(clippy::float_cmp)]
#![allow(clippy::eq_op)]
#![allow(clippy::assign_op_pattern)]
#![allow(clippy::float_cmp)]
#![allow(clippy::int_plus_one)]
#![allow(clippy::many_single_char_names)]
#![allow(clippy::mixed_case_hex_literals)]
#![allow(clippy::needless_return)]
#![allow(clippy::unreadable_literal)]

mod libm_helper;
mod math;
Expand Down

0 comments on commit 5603a53

Please sign in to comment.