-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid escape character #50
Comments
Could you try deleting your lockfile and updating? |
seems like allowing no-op escapes was added in regex 1.8.0, so we should also change the regex or bump the required version though. i think changing the regex is better. i'm not sure it's worth making another 0.8.x release, since the fix is quite straight forward, but we could do that too if there's a need. |
robtfm
pushed a commit
that referenced
this issue
Sep 5, 2023
This just removes the unnecessary / invalid escapes. Addresses #50
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running Bevy 0.11.2 on an ArchLinux x64 is throwing an error when trying to build the following regex:
Shouldn't it be
r"(//|/\*|\*/)"
?The text was updated successfully, but these errors were encountered: