We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0995186 commit 482582eCopy full SHA for 482582e
src/murfey/server/api/bootstrap.py
@@ -931,7 +931,7 @@ def get_rust_package_crate(
931
if not crate.endswith(".crate"):
932
raise ValueError("This is a not a Rust crate")
933
# Rust crates follow a '{crate}-{version}.crate' structure
934
- if not re.fullmatch(r"[\w\-]+\-[0-9\.]+\.crate", crate):
+ if not re.fullmatch(r"[\w\-\.]+\.crate", crate):
935
raise ValueError("Invalid crate name")
936
937
# Request and return package
0 commit comments