-
Notifications
You must be signed in to change notification settings - Fork 57
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
Fix dimable_name regular expression #122
Conversation
The regex for dimable names wasn't anchoring the entire expression on the start and end of lines, just the first and last optional matches.
bors r+ |
122: Fix dimable_name regular expression r=burrbull a=gkelly The regex for dimable names wasn't anchoring the entire expression on the start and end of lines, just the first and last optional matches. Co-authored-by: Garret Kelly <[email protected]>
Build failed: |
https://travis-ci.org/github/rust-embedded/svd/jobs/693897919, the failure seems unrelated to this change. Not sure how to diagnose the actual issue here off hand. |
Looks like we need up minimal supported Rust version to 1.36 |
cc @therealprof |
crossbeam-rs/crossbeam#504 maybe related? |
Opened #123 to bump MSRV. |
bors r=burrbull |
122: Fix dimable_name regular expression r=burrbull a=gkelly The regex for dimable names wasn't anchoring the entire expression on the start and end of lines, just the first and last optional matches. Co-authored-by: Garret Kelly <[email protected]>
Build failed: |
Still working on the CI in #124. |
bors r=burrbull |
Build succeeded: |
The regex for dimable names wasn't anchoring the entire expression on
the start and end of lines, just the first and last optional matches.