You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, #320 already solved this issue by upgrading the regex-syntax dependency. The PR is stalled because I am waiting some reply from the author of this crate, as I cannot publish new releases on my own :/
Hello, #320 already solved this issue by upgrading the regex-syntax dependency. The PR is stalled because I am waiting some reply from the author of this crate, as I cannot publish new releases on my own :/
Nice to hear that. Hope the PR can be merged soon :)
I'm writing a lexer for Cypher language. As specified in its ANTLR grammar, I define the token for unescaped identifiers as follows:
It fails to compile due to regex parse error:
It seems the problem lies in the dependency
regex-syntax = 0.6
. I try to parse[\p{Sc}]
with it:And It raises the same error
The problem might be solved by updating
regex-syntax
. For example, withregex-syntax = 0.8.2
, the test above succeeds:The text was updated successfully, but these errors were encountered: