• cargo-cache 0.8.3/src/cache/registry_index.rs
    198
            // map the dirs to RegistryIndexCaches and return them as vector
    199
            #[allow(clippy::manual_filter_map)]
    200
            let indices = indices_dirs
  • cargo-cache 0.8.3/src/cache/registry_pkg_cache.rs
    188
            // map the dirs to RegistryIndexCaches and return them as vector
    189
            #[allow(clippy::manual_filter_map)]
    190
            let caches = cache_dirs
  • cargo-cache 0.8.3/src/cache/registry_sources.rs
    210
                .unwrap_or_else(|_| panic!("failed to read directory {}", path.display()));
    211
            #[allow(clippy::manual_filter_map)]
    212
            let registry_folders = registries
  • cargo-cache 0.8.3/src/clean_unref.rs
    117
        // get the path inside the CARGO_HOME of the source of the dependency
    118
        #[allow(clippy::manual_filter_map)]
    119
        let required_packages = dependencies
  • cargo-cache 0.8.3/src/commands/local.rs
    42
    fn seeing_manifest(path: &Path) -> Option<PathBuf> {
    43
        #[allow(clippy::manual_filter_map)]
    44
        read_dir(path)
    187
        // and look how big the remaining stuff is
    188
        #[allow(clippy::manual_filter_map)] // meh
    189
        let size_other: u64 = read_dir(&target_dir)
  • cargo-cache 0.8.3/src/commands/sccache.rs
    94
        #[allow(clippy::manual_filter_map)]
    95
        let total_size_entire_cache: u64 = files_sorted
    115
                #[allow(clippy::manual_filter_map)]
    116
                let total_size_bytes: u64 = files_sorted
  • cargo-cache 0.8.3/src/commands/toolchains.rs
    57
            let number_files = WalkDir::new(&path).into_iter().count();
    58
            #[allow(clippy::manual_filter_map)]
    59
            let size: u64 = WalkDir::new(&path)
  • heron_rapier 5.0.2/src/body.rs
    166
    #[allow(clippy::manual_filter_map)]
    167
    fn remove_collider_handles(
  • ascii-hangman-backend 5.7.2/src/dictionary.rs
    3
    #![allow(clippy::manual_filter_map)]
    4
    use rand::Rng;
  • grass 0.12.2/src/lib.rs
    42
        // filter isn't fallible
    43
        clippy::manual_filter_map,
    44
        clippy::new_ret_no_self,
  • grass_compiler 0.12.2/src/lib.rs
    42
        // filter isn't fallible
    43
        clippy::manual_filter_map,
    44
        clippy::new_ret_no_self,
  • mm0b_parser 0.1.4/src/lib.rs
    40
      clippy::inline_always,
    41
      clippy::manual_filter_map,
    42
      clippy::map_err_ignore,