summaryrefslogtreecommitdiffstats
path: root/openpgp/src/regex/lexer.rs
AgeCommit message (Collapse)Author
2021-11-29Fix Acronym spelling.Nora Widdecke
- In CamelCase, acronyms count as one word. Apply this rule where API and lalrpop are not impacted. - Found by clippy::upper_case_acronyms.
2021-09-30Drop unnecessary to_string() methodsLars Wirzenius
The methods were shadowing the implementation of the same function via the Display trait. One implementation is enough. Found by the clippy trait inherent_to_string_shadow_display: https://rust-lang.github.io/rust-clippy/master/index.html#inherent_to_string_shadow_display
2021-09-30Simplify writing out a literal {}Lars Wirzenius
It's arguably simpler to write a format string that doesn't take arguments than one with an argument that looks like a format string. Found by clippy lint write_literal: https://rust-lang.github.io/rust-clippy/master/index.html#write_literal
2021-01-08openpgp: Add regex support.Neal H. Walfield
- Fixes #188.