From e0cc7f6a03008f623d3286678f6dc22f8cebef51 Mon Sep 17 00:00:00 2001 From: John Turner Date: Tue, 18 Nov 2025 04:24:41 +0000 Subject: [PATCH] dont allow "." in repo names --- src/atom/parsers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/atom/parsers.rs b/src/atom/parsers.rs index 47c8c1e..7733f12 100644 --- a/src/atom/parsers.rs +++ b/src/atom/parsers.rs @@ -216,7 +216,7 @@ impl<'a> Parseable<'a, &'a str> for Repo { fn parser() -> Self::Parser { let start = alphanumeric().or(one_of("_".chars())); - let rest = alphanumeric().or(one_of("+_.-".chars())).repeated().many(); + let rest = alphanumeric().or(one_of("+_-".chars())).repeated().many(); start .and(rest)