goffrie / plex

a parser and lexer generator as a Rust procedural macro
Apache License 2.0
410 stars 28 forks source link

The crates.io version seems out of date #35

Closed johanmazel closed 5 years ago

johanmazel commented 5 years ago

The provided example is compiling with the nightly 70f130954 2019-04-16 by adding missing "crate::" statements. The last version published on crates.io is 0.2.3. The fixed example does not compile against this version. Would it be possible to update the version on crates.io?

goffrie commented 5 years ago

I published 0.2.4 to match current master.

Note that the example is still using the Rust 2015 edition. I haven't tested whether all the macro business works correctly in the 2018 edition.

johanmazel commented 5 years ago

Thank you very much.