update to new version of mon

This commit is contained in:
John Turner
2025-10-30 22:40:29 +00:00
parent 72b6774e2b
commit 820cb3ba48
6 changed files with 24 additions and 24 deletions

View File

@@ -10,7 +10,7 @@ impl<'a> Parseable<'a, &'a str> for UseFlag {
fn parser() -> Self::Parser {
let start = r#if(|c: &char| c.is_ascii_alphanumeric());
let rest = r#if(|c: &char| c.is_ascii_alphanumeric() || "+_@-".contains(*c)).list(0..);
let rest = r#if(|c: &char| c.is_ascii_alphanumeric() || "+_@-".contains(*c)).repeated(0..);
start
.and(rest)