• bitcoin_scripts 0.9.0/src/address.rs
    448
        fn from_str(s: &str) -> Result<Self, Self::Err> {
    449
            #[allow(clippy::match_str_case_mismatch)]
    450
            Ok(match s.to_uppercase().as_str() {
  • surf_n_term 0.7.3/src/keys.rs
    179
        #[allow(clippy::match_str_case_mismatch)]
    180
        fn from_str(string: &str) -> Result<Self, Self::Err> {
  • trillium-http 0.2.8/src/method.rs
    371
        fn from_str(s: &str) -> Result<Self, Self::Err> {
    372
            #[allow(clippy::match_str_case_mismatch)]
    373
            // https://github.com/rust-lang/rust-clippy/issues/7882
  • millennium-core 1.0.0-beta.3/src/lib.rs
    159
    #![allow(
    160
    	clippy::match_str_case_mismatch,
    161
    	clippy::upper_case_acronyms,
  • tao 0.17.0/src/lib.rs
    137
    #![allow(
    138
      clippy::match_str_case_mismatch,
    139
      clippy::upper_case_acronyms,