-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Remove uses of regex library #25
Comments
You missed a spot in The one you missed is fairly easy to replace with The one you highlight in the session submodule of the user module is rather difficult to replace with string operations. It contains optional path separators between the components that it is looking for so it would need to be replaced with 4 strings (without either separators, with the first, with the second, with both separator). Closing as WONTFIX; re-open if you have any objections to or see any flaws in my reasoning. |
With string-based operations it might be difficult, but I think it's still doable with nom. I'd still like to at least give it a try. |
This line will contain our last regex usage once #24 lands. We should compare the performance to a nom-based parser (if it fits in this use-case), and remove the regex lib if necessary.
This would let us remove the regex library as a dependency entirely.
The text was updated successfully, but these errors were encountered: