• intern-str 0.1.0/src/builder.rs
    211
        /// Try to shortern this node to be less than the given length.
    212
        #[allow(clippy::mem_replace_with_default)]
    213
        fn shorten(&mut self, len: usize) {
  • sourmash 0.11.0/src/index/sbt/mod.rs
    841
        // Remove this when MSRV is >= 1.40
    842
        #[allow(clippy::mem_replace_with_default)]
    843
        fn new_tree(mut left: BinaryTree, mut right: BinaryTree) -> BinaryTree {
  • alt_serde_json 1.0.61/src/lib.rs
    351
        clippy::checked_conversions,
    352
        clippy::mem_replace_with_default,
    353
        // noisy
  • derivative 2.2.0/src/lib.rs
    5
    #![allow(clippy::unknown_clippy_lints)] // because of other #![allow]s
    6
    #![allow(clippy::mem_replace_with_default)] // needs rustc 1.40
    7
    #![allow(clippy::option_as_ref_deref)] // needs rustc 1.40
  • serde_json 1.0.91/src/lib.rs
    358
        clippy::checked_conversions,
    359
        clippy::mem_replace_with_default,
    360
        // noisy
  • serde_json_lenient 0.1.4/src/lib.rs
    359
        clippy::checked_conversions,
    360
        clippy::mem_replace_with_default,
    361
        // noisy
  • serde_partiql 1.1.65/src/lib.rs
    351
        clippy::checked_conversions,
    352
        clippy::mem_replace_with_default,
    353
        // noisy
  • sled 0.34.7/src/lib.rs
    157
    #![warn(clippy::multiple_crate_versions)]
    158
    #![allow(clippy::mem_replace_with_default)] // Not using std::mem::take() due to MSRV of 1.37 (intro'd in 1.40)
    159
    #![allow(clippy::match_like_matches_macro)] // Not using std::matches! due to MSRV of 1.37 (intro'd in 1.42)
  • tulip-derivative 2.2.1/src/lib.rs
    4
    #![allow(clippy::unknown_clippy_lints)] // because of other #![allow]s
    5
    #![allow(clippy::mem_replace_with_default)] // needs rustc 1.40
    6
    #![allow(clippy::option_as_ref_deref)] // needs rustc 1.40
  • vsdbsled 0.34.7-patched/src/lib.rs
    157
    #![warn(clippy::multiple_crate_versions)]
    158
    #![allow(clippy::mem_replace_with_default)] // Not using std::mem::take() due to MSRV of 1.37 (intro'd in 1.40)
    159
    #![allow(clippy::match_like_matches_macro)] // Not using std::matches! due to MSRV of 1.37 (intro'd in 1.42)