rp-rs / pio-rs

Support crate for Raspberry Pi's PIO architecture.
MIT License
149 stars 22 forks source link

Work around regex incompatibility #39

Closed jannic closed 1 year ago

jannic commented 1 year ago

Due to https://github.com/lalrpop/lalrpop/issues/750, an upgrade to regex >= 1.8.0 causes build failues because the unicode feature on regex-syntax is no longer enabled automatically.

Work around that issue by adding a (otherwise unnecessary) dependency on regex-syntax, enabling the unicode feature.