• eyecite 0.0.0/src/regexes.rs
    136
    // clippy doesn't like '\ ' but i think its ok since it is set to ignore whitespace
    137
    #[allow(clippy::invalid_regex)]
    138
    pub fn short_cite_re(regex: &str) -> ResolvedRegex {
  • weld 0.4.0/src/syntax/tokenizer.rs
    152
    /// Break up a string into tokens.
    153
    #[allow(clippy::invalid_regex)]
    154
    pub fn tokenize(input: &str) -> WeldResult<Vec<Token>> {
  • jellyschema 0.11.10/src/validator/types/uri.rs
    1
    // TODO Investigate if it's a clippy bug or buggy regex
    2
    #![allow(clippy::invalid_regex)]
  • smda 0.2.5/src/jump_table_analyser.rs
    1
    #![allow(clippy::invalid_regex)]
    2
    use crate::{error::Error, Disassembler, DisassemblyResult, FunctionAnalysisState, Result};