• awint_macro_internals 0.8.0/src/ranges.rs
    5
    /// Tries parsing as hexadecimal, octal, binary, and decimal
    6
    #[allow(clippy::manual_filter)] // TODO remove after clippy issue #9766
    7
    pub fn i128_try_parse(s: &[char]) -> Option<i128> {
  • glean-core 52.2.0/src/metrics/ping.rs
    135
            #[allow(unknown_lints)]
    136
            #[allow(clippy::manual_filter)]
    137
            let corrected_reason = match reason {
  • hurl 2.0.0/src/cli/options.rs
    414
    // FIXME: disallow this clippy warning because of https://github.com/rust-lang/rust-clippy/issues/9766
    415
    #[allow(clippy::manual_filter)]
    416
    pub fn parse_options(matches: &ArgMatches) -> Result<CliOptions, CliError> {
  • nu-command 0.75.0/src/viewers/table.rs
    1778
    #[allow(clippy::manual_filter)]
    1779
    fn strip_output_color(output: Option<String>, config: &Config) -> Option<String> {