• compact_str 0.6.1/src/repr/boxed/capacity.rs
    27
    // great lint
    28
    #[allow(clippy::precedence)]
    29
    pub const MAX_VALUE: usize = (1 << SPACE_FOR_CAPACITY * 8) - 2;
  • tiny-skia 0.8.2/src/scan/hairline.rs
    94
                let slope = fdot16::div(dy, dx);
    95
                #[allow(clippy::precedence)]
    96
                let mut start_y = fdot6::to_fdot16(y0) + (slope * ((32 - x0) & 63) >> 6);
    137
                let slope = fdot16::div(dx, dy);
    138
                #[allow(clippy::precedence)]
    139
                let mut start_x = fdot6::to_fdot16(x0) + (slope * ((32 - y0) & 63) >> 6);
  • bevy_fundsp 0.2.0/examples/bevy_audio/interactive.rs
    1
    #![allow(clippy::precedence)]
  • bevy_fundsp 0.2.0/examples/bevy_audio/noise.rs
    1
    #![allow(clippy::precedence)]
  • bevy_fundsp 0.2.0/examples/kira/interactive.rs
    1
    #![allow(clippy::precedence)]
  • bevy_fundsp 0.2.0/examples/kira/noise.rs
    1
    #![allow(clippy::precedence)]
  • bevy_fundsp 0.2.0/examples/oddio/controlled.rs
    1
    #![allow(clippy::precedence)]
  • bevy_fundsp 0.2.0/examples/oddio/interactive.rs
    1
    #![allow(clippy::precedence)]
  • bevy_fundsp 0.2.0/examples/oddio/noise.rs
    1
    #![allow(clippy::precedence)]
  • cargo-drone 0.4.3/src/lib.rs
    20
    #![warn(missing_docs)]
    21
    #![cfg_attr(feature = "cargo-clippy", allow(precedence))]
  • cosmian_kyber 0.1.0/src/reference/polyvec.rs
    1
    #![allow(clippy::precedence)]
    2
    use crate::{params::*, poly::*};
  • drone-core 0.14.3/src/lib.rs
    57
        clippy::needless_doctest_main,
    58
        clippy::precedence,
    59
        clippy::type_repetition_in_bounds,
  • drone-cortex-m 0.11.1/src/lib.rs
    54
        clippy::needless_doctest_main,
    55
        clippy::precedence,
    56
        clippy::shadow_unrelated,
  • drone-cortexm 0.14.1/src/lib.rs
    65
        clippy::needless_doctest_main,
    66
        clippy::precedence,
    67
        clippy::shadow_unrelated,
  • drone-fatfs 0.2.3/src/lib.rs
    41
    #![cfg_attr(not(feature = "std"), no_std)]
    42
    #![cfg_attr(feature = "cargo-clippy", allow(precedence, inline_always))]
  • drone-fatfs-sd 0.2.3/src/lib.rs
    12
    #![cfg_attr(not(feature = "std"), no_std)]
    13
    #![cfg_attr(feature = "cargo-clippy", allow(precedence))]
  • drone-micropython-core 0.1.1/src/lib.rs
    44
    #![cfg_attr(not(feature = "std"), no_std)]
    45
    #![cfg_attr(feature = "cargo-clippy", allow(precedence, inline_always))]
  • drone-micropython-stm32 0.1.1/src/lib.rs
    16
    #![cfg_attr(test, default_lib_allocator)]
    17
    #![cfg_attr(feature = "cargo-clippy", allow(precedence))]
  • drone-sd-core 0.2.2/src/lib.rs
    38
    #![cfg_attr(not(feature = "std"), no_std)]
    39
    #![cfg_attr(feature = "cargo-clippy", allow(precedence, inline_always))]
  • drone-sd-stm32 0.2.2/src/lib.rs
    16
    #![cfg_attr(test, default_lib_allocator)]
    17
    #![cfg_attr(feature = "cargo-clippy", allow(precedence))]
  • drone-stm32 0.8.3/src/lib.rs
    75
    #![cfg_attr(test, default_lib_allocator)]
    76
    #![cfg_attr(feature = "cargo-clippy", allow(precedence, inline_always))]
  • drone-stm32-macros 0.8.3/src/lib.rs
    6
    #![recursion_limit = "256"]
    7
    #![cfg_attr(feature = "cargo-clippy", allow(precedence))]
  • drone-stm32-svd 0.8.3/src/lib.rs
    7
    #![doc(html_root_url = "https://docs.rs/drone-stm32-svd/0.8.3")]
    8
    #![cfg_attr(feature = "cargo-clippy", allow(precedence))]
  • echolot 0.1.1/src/main.rs
    1
    #![allow(clippy::precedence)]
  • echolot 0.1.1/src/transmit/speaker.rs
    1
    #![allow(clippy::precedence)]
    2
    #![allow(dead_code)]
  • fundsp 0.12.0/benches/benchmark.rs
    1
    #![allow(clippy::precedence)]
  • fundsp 0.12.0/examples/beep.rs
    1
    //! Make some noise via cpal.
    2
    #![allow(clippy::precedence)]
  • fundsp 0.12.0/examples/grain.rs
    1
    //! Make some granular noises. Please run me in release mode!
    2
    #![allow(clippy::precedence)]
  • fundsp 0.12.0/examples/live_adsr.rs
    19
    //! example in the [`midir` crate](https://github.com/Boddlnagg/midir).
    20
    #![allow(clippy::precedence)]
  • fundsp 0.12.0/examples/sequence.rs
    3
    #![allow(unused_must_use)]
    4
    #![allow(clippy::precedence)]
  • fundsp 0.12.0/src/lib.rs
    7
    #![allow(
    8
        clippy::precedence,
    9
        clippy::type_complexity,
  • fundsp 0.12.0/tests/basic.rs
    2
        dead_code,
    3
        clippy::precedence,
    4
        clippy::type_complexity,
  • fundsp 0.12.0/tests/filter.rs
    2
        dead_code,
    3
        clippy::precedence,
    4
        clippy::type_complexity,
  • kas-core 0.12.1/src/core/widget_id.rs
    8
    // x << a + b is x << (a + b)
    9
    #![allow(clippy::precedence)]
  • pqc_kyber 0.4.0/src/reference/polyvec.rs
    1
    #![allow(clippy::precedence)]
    2
    use crate::{
  • terminus-store 0.20.0/src/structure/bitarray.rs
    1
    #![allow(clippy::precedence, clippy::verbose_bit_mask)]
  • terminus-store 0.20.0/src/structure/logarray.rs
    1
    #![allow(clippy::precedence, clippy::verbose_bit_mask)]