chore: update to clap v4 & termion v2

This commit is contained in:
graelo 2022-11-07 00:02:27 +01:00
parent 1f79419934
commit 10013a6c6d
9 changed files with 282 additions and 196 deletions

View file

@ -54,7 +54,7 @@ pub fn parse_alphabet(src: &str) -> Result<Alphabet> {
}
/// Type-safe string alphabet (newtype).
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Alphabet(pub String);
impl Alphabet {