|
6 | 6 |
|
7 | 7 | #![cfg_attr(all(test, feature = "bench"), feature(test))]
|
8 | 8 | //#![cfg_attr(test, deny(warnings))]
|
| 9 | +#![allow(unnecessary_transmutes)] |
| 10 | +#![allow(bare_trait_objects)] |
| 11 | +#![allow(clippy::ptr_offset_with_cast)] |
| 12 | +#![allow(clippy::needless_lifetimes)] |
| 13 | +#![allow(clippy::needless_late_init)] |
| 14 | +#![allow(clippy::explicit_auto_deref)] |
| 15 | +#![allow(clippy::result_unit_err)] |
| 16 | +#![allow(clippy::op_ref)] |
| 17 | +#![allow(clippy::missing_safety_doc)] |
| 18 | +#![allow(clippy::missing_transmute_annotations)] |
| 19 | +#![allow(clippy::partialeq_ne_impl)] |
| 20 | +#![allow(clippy::legacy_numeric_constants)] |
| 21 | +#![allow(clippy::collapsible_if)] |
| 22 | +#![allow(clippy::wrong_self_convention)] |
| 23 | +#![allow(clippy::len_zero)] |
| 24 | +#![allow(clippy::transmute_bytes_to_str)] |
| 25 | +#![allow(clippy::match_like_matches_macro)] |
| 26 | +#![allow(clippy::redundant_static_lifetimes)] |
| 27 | +#![allow(clippy::redundant_field_names)] |
| 28 | +#![allow(clippy::unusual_byte_groupings)] |
| 29 | +#![allow(clippy::borrow_deref_ref)] |
| 30 | +#![allow(clippy::needless_return)] |
| 31 | +#![allow(clippy::while_let_loop)] |
9 | 32 |
|
10 | 33 | #[macro_use]
|
11 | 34 | extern crate debug_unreachable;
|
|
0 commit comments