• arithmetic-eval 0.3.0/src/values/mod.rs
    82
    #[allow(renamed_and_removed_lints, clippy::unknown_clippy_lints)]
    83
    // ^ `missing_panics_doc` is newer than MSRV, and `clippy::unknown_clippy_lints` is removed
  • goldilocks-ntt 0.1.0/src/ntt/mod.rs
    187
        // New lint in nightly
    188
        #[allow(clippy::unknown_clippy_lints)]
    189
        // False positive
  • heim-disk 0.1.0-rc.1/src/filesystem.rs
    76
        /// Checks if filesystem is used for a physical devices
    77
        #[allow(clippy::unknown_clippy_lints, clippy::match_like_matches_macro)]
    78
        pub fn is_physical(&self) -> bool {
  • nix 0.26.2/src/sys/uio.rs
    158
    #[allow(renamed_and_removed_lints)]
    159
    #[allow(clippy::unknown_clippy_lints)]
    160
    // Clippy false positive: https://github.com/rust-lang/rust-clippy/issues/8867
  • pin-project 1.0.12/tests/expand/default/enum.expanded.rs
    13
    #[allow(unused_tuple_struct_fields)]
    14
    #[allow(clippy::unknown_clippy_lints)]
    15
    #[allow(clippy::pattern_type_mismatch)]
    36
    #[allow(unused_tuple_struct_fields)]
    37
    #[allow(clippy::unknown_clippy_lints)]
    38
    #[allow(clippy::pattern_type_mismatch)]
    56
    #[allow(unused_tuple_struct_fields)]
    57
    #[allow(clippy::unknown_clippy_lints)]
    58
    #[allow(clippy::pattern_type_mismatch)]
  • pin-project 1.0.12/tests/expand/default/struct.expanded.rs
    13
    #[allow(unused_tuple_struct_fields)]
    14
    #[allow(clippy::unknown_clippy_lints)]
    15
    #[allow(clippy::pattern_type_mismatch)]
  • pin-project 1.0.12/tests/expand/default/tuple_struct.expanded.rs
    9
    #[allow(unused_tuple_struct_fields)]
    10
    #[allow(clippy::unknown_clippy_lints)]
    11
    #[allow(clippy::pattern_type_mismatch)]
  • pin-project 1.0.12/tests/expand/multifields/enum.expanded.rs
    19
    #[allow(unused_tuple_struct_fields)]
    20
    #[allow(clippy::unknown_clippy_lints)]
    21
    #[allow(clippy::pattern_type_mismatch)]
    49
    #[allow(unused_tuple_struct_fields)]
    50
    #[allow(clippy::unknown_clippy_lints)]
    51
    #[allow(clippy::pattern_type_mismatch)]
    79
    #[allow(unused_tuple_struct_fields)]
    80
    #[allow(clippy::unknown_clippy_lints)]
    81
    #[allow(clippy::pattern_type_mismatch)]
    107
    #[allow(unused_tuple_struct_fields)]
    108
    #[allow(clippy::unknown_clippy_lints)]
    109
    #[allow(clippy::pattern_type_mismatch)]
  • pin-project 1.0.12/tests/expand/multifields/struct.expanded.rs
    16
    #[allow(unused_tuple_struct_fields)]
    17
    #[allow(clippy::unknown_clippy_lints)]
    18
    #[allow(clippy::pattern_type_mismatch)]
  • pin-project-lite 0.2.9/tests/expand/default/enum.expanded.rs
    7
    #[allow(single_use_lifetimes)]
    8
    #[allow(clippy::unknown_clippy_lints)]
    9
    #[allow(clippy::mut_mut)]
    24
    #[allow(single_use_lifetimes)]
    25
    #[allow(clippy::unknown_clippy_lints)]
    26
    #[allow(clippy::mut_mut)]
    52
    #[allow(single_use_lifetimes)]
    53
    #[allow(clippy::unknown_clippy_lints)]
    54
    #[allow(clippy::used_underscore_binding)]
  • pin-project-lite 0.2.9/tests/expand/default/struct.expanded.rs
    7
    #[allow(single_use_lifetimes)]
    8
    #[allow(clippy::unknown_clippy_lints)]
    9
    #[allow(clippy::redundant_pub_crate)]
    13
        #[allow(single_use_lifetimes)]
    14
        #[allow(clippy::unknown_clippy_lints)]
    15
        #[allow(clippy::mut_mut)]
    27
        #[allow(single_use_lifetimes)]
    28
        #[allow(clippy::unknown_clippy_lints)]
    29
        #[allow(clippy::mut_mut)]
  • pin-project-lite 0.2.9/tests/expand/multifields/enum.expanded.rs
    25
    #[allow(single_use_lifetimes)]
    26
    #[allow(clippy::unknown_clippy_lints)]
    27
    #[allow(clippy::used_underscore_binding)]
  • pin-project-lite 0.2.9/tests/expand/multifields/struct.expanded.rs
    20
    #[allow(single_use_lifetimes)]
    21
    #[allow(clippy::unknown_clippy_lints)]
    22
    #[allow(clippy::redundant_pub_crate)]
    26
        #[allow(single_use_lifetimes)]
    27
        #[allow(clippy::unknown_clippy_lints)]
    28
        #[allow(clippy::mut_mut)]
    42
        #[allow(single_use_lifetimes)]
    43
        #[allow(clippy::unknown_clippy_lints)]
    44
        #[allow(clippy::mut_mut)]
  • spirit-log 0.4.4/src/lib.rs
    6
        renamed_and_removed_lints,
    7
        clippy::unknown_clippy_lints,
    8
        clippy::needless_doctest_main
    507
            // Clippy gets angry when the syslog is disabled
    508
            #[allow(clippy::unknown_clippy_lints, clippy::match_single_binding)]
    509
            match self.destination {
  • ulid-generator-rs 0.0.13/src/lib.rs
    338
      /// ```
    339
      #[allow(clippy::unknown_clippy_lints)]
    340
      #[allow(clippy::inherent_to_string_shadow_display)]
  • zkp-primefield 0.2.0/src/fft/mod.rs
    200
        // New lint in nightly
    201
        #[allow(clippy::unknown_clippy_lints)]
    202
        // False positive
  • aerospike 1.2.0/src/lib.rs
    37
        clippy::too_many_lines,
    38
        clippy::unknown_clippy_lints,
    39
        clippy::unseparated_literal_suffix,
  • arithmetic-eval 0.3.0/src/arith/mod.rs
    34
    #![allow(renamed_and_removed_lints, clippy::unknown_clippy_lints)]
    35
    // ^ `map_err_ignore` is newer than MSRV, and `clippy::unknown_clippy_lints` is removed
  • arithmetic-eval 0.3.0/src/values/variable_map.rs
    3
    #![allow(renamed_and_removed_lints, clippy::unknown_clippy_lints)]
    4
    // ^ `missing_panics_doc` is newer than MSRV, and `clippy::unknown_clippy_lints` is removed
  • asyncgit 0.22.1/src/error.rs
    1
    #![allow(renamed_and_removed_lints, clippy::unknown_clippy_lints)]
  • choir 0.5.0/src/lib.rs
    21
        clippy::if_same_then_else,
    22
        clippy::unknown_clippy_lints,
    23
        clippy::len_without_is_empty,
  • clickhouse-driver 0.1.0-alpha.3/src/lib.rs
    36
    #![recursion_limit = "128"]
    37
    #![allow(clippy::unknown_clippy_lints)]
    38
    extern crate byteorder;
  • derivative 2.2.0/src/lib.rs
    4
    #![allow(renamed_and_removed_lints)] // support for multiple Clippy versions
    5
    #![allow(clippy::unknown_clippy_lints)] // because of other #![allow]s
    6
    #![allow(clippy::mem_replace_with_default)] // needs rustc 1.40
  • derivative 2.2.0/tests/derive-ord-packed.rs
    4
    #![allow(clippy::trivially_copy_pass_by_ref)]
    5
    #![allow(clippy::unknown_clippy_lints)]
  • derivative 2.2.0/tests/derive-ord.rs
    4
    #![allow(clippy::trivially_copy_pass_by_ref)]
    5
    #![allow(clippy::unknown_clippy_lints)]
  • domain 0.7.1/src/lib.rs
    107
    #![allow(renamed_and_removed_lints)]
    108
    #![allow(clippy::unknown_clippy_lints)]
    109
    #![cfg_attr(docsrs, feature(doc_cfg))]
  • filetreelist 0.5.0/src/error.rs
    1
    #![allow(renamed_and_removed_lints, clippy::unknown_clippy_lints)]
  • flexbuffers 2.0.0/src/lib.rs
    31
    // Until flat/flexbuffers is on Rust v1.42, we cannot use the previously unstable matches! macro.
    32
    #![allow(clippy::unknown_clippy_lints)]
    33
    #![allow(clippy::match_like_matches_macro)]
  • grass 0.12.2/src/lib.rs
    45
        renamed_and_removed_lints,
    46
        clippy::unknown_clippy_lints,
    47
        clippy::single_match,
  • grass_compiler 0.12.2/src/lib.rs
    45
        renamed_and_removed_lints,
    46
        clippy::unknown_clippy_lints,
    47
        clippy::single_match,
  • halo2-core 0.1.0-beta.2/src/lib.rs
    8
    // Use the old lint name to build without warnings until our MSRV is at least 1.51.
    9
    #![allow(clippy::unknown_clippy_lints)]
    10
    // The actual lints we want to disable.
  • halo2_proofs 0.2.0/src/lib.rs
    8
    // Use the old lint name to build without warnings until our MSRV is at least 1.51.
    9
    #![allow(clippy::unknown_clippy_lints)]
    10
    // The actual lints we want to disable.
  • headless_chrome_fork 1.0.2/src/lib.rs
    60
    #![allow(
    61
    clippy::unknown_clippy_lints,
    62
    clippy::module_name_repetitions,
  • keyvalues-parser 0.1.0/src/error.rs
    9
    #![allow(renamed_and_removed_lints)]
    10
    #![allow(clippy::unknown_clippy_lints)]
  • keyvalues-parser 0.1.0/src/text/parse.rs
    2
    #![allow(renamed_and_removed_lints)]
    3
    #![allow(clippy::unknown_clippy_lints)]
    4
    #![allow(clippy::upper_case_acronyms)]
  • keyvalues-serde 0.1.0/src/error.rs
    9
    #![allow(renamed_and_removed_lints)]
    10
    #![allow(clippy::unknown_clippy_lints)]
  • mp4parse 0.12.0/src/lib.rs
    11
    #![allow(renamed_and_removed_lints)]
    12
    #![allow(clippy::unknown_clippy_lints)]
    13
    #![allow(clippy::upper_case_acronyms)]
  • octseq 0.1.0/src/lib.rs
    16
    #![allow(renamed_and_removed_lints)]
    17
    #![allow(clippy::unknown_clippy_lints)]
    18
    #![cfg_attr(docsrs, feature(doc_cfg))]
  • rayon-join-macro 0.1.1/src/lib.rs
    25
    #![allow(clippy::needless_doctest_main)]
    26
    #![allow(clippy::unknown_clippy_lints)]
  • rcodec 1.0.1/src/byte_vector.rs
    73
        pub fn pad_left(&self, len: usize) -> Result<ByteVector, Error> {
    74
            #![allow(clippy::unknown_clippy_lints, clippy::comparison_chain)]
    92
        pub fn pad_right(&self, len: usize) -> Result<ByteVector, Error> {
    93
            #![allow(clippy::unknown_clippy_lints, clippy::comparison_chain)]
  • routinator 0.12.1/src/lib.rs
    48
    #![allow(renamed_and_removed_lints)]
    49
    #![allow(clippy::unknown_clippy_lints)]
  • rpki 0.15.9/src/lib.rs
    30
    #![allow(renamed_and_removed_lints)]
    31
    #![allow(clippy::unknown_clippy_lints)]
  • rtrtr 0.2.2/src/lib.rs
    23
    #![allow(renamed_and_removed_lints)]
    24
    #![allow(clippy::unknown_clippy_lints)]
  • serde_with_macros 2.2.0/src/lib.rs
    32
    // Necessary for nightly clippy lints
    33
    #![allow(clippy::unknown_clippy_lints)]
  • spirit 0.4.21/src/lib.rs
    4
        renamed_and_removed_lints,
    5
        clippy::unknown_clippy_lints,
    6
        clippy::type_complexity,
  • spirit-cfg-helpers 0.4.0/src/lib.rs
    8
        unknown_lints,
    9
        clippy::unknown_clippy_lints,
    10
        clippy::needless_doctest_main
  • spirit-log 0.4.4/src/background.rs
    4
        renamed_and_removed_lints,
    5
        clippy::unknown_clippy_lints,
    6
        clippy::mutex_atomic
  • stry-evermore 0.1.0/src/lib.rs
    1
    #![allow(clippy::unknown_clippy_lints)] // because of pin-project
    2
    #![warn(clippy::pedantic, rust_2018_idioms)]
  • tor-netdoc 0.6.0/src/parse/macros.rs
    3
    // https://github.com/rust-lang/rust-clippy/issues/6860
    4
    #![allow(renamed_and_removed_lints, clippy::unknown_clippy_lints)]
  • tulip-derivative 2.2.1/src/lib.rs
    3
    #![allow(renamed_and_removed_lints)] // support for multiple Clippy versions
    4
    #![allow(clippy::unknown_clippy_lints)] // because of other #![allow]s
    5
    #![allow(clippy::mem_replace_with_default)] // needs rustc 1.40
  • tulip-derivative 2.2.1/tests/derive-ord-packed.rs
    4
    #![allow(clippy::trivially_copy_pass_by_ref)]
    5
    #![allow(clippy::unknown_clippy_lints)]
  • tulip-derivative 2.2.1/tests/derive-ord.rs
    4
    #![allow(clippy::trivially_copy_pass_by_ref)]
    5
    #![allow(clippy::unknown_clippy_lints)]
  • turbofish 0.0.0/src/handler.rs
    1
    #![allow(clippy::unknown_clippy_lints)]
  • yata 0.6.1/src/lib.rs
    35
    #![allow(renamed_and_removed_lints)] // workaround clippy unknown lints when rust stable 1.50. May be removed in the future
    36
    #![allow(clippy::unknown_clippy_lints)] // workaround clippy unknown lints when rust stable 1.50. May be removed in the future
    37
    #![allow(unknown_lints)] // workaround clippy unknown lints when rust stable 1.50. May be removed in the future