regex-le 0.1.0

Find every regex in a codebase and report which can be driven into catastrophic backtracking
1
2
3
4
5
6
7
8
9
10
11
12
mod cli;
mod detect;
mod mcp;
mod scan;
mod walk;

#[cfg(test)]
mod testing;

fn main() -> std::process::ExitCode {
    cli::run()
}