-
Notifications
You must be signed in to change notification settings - Fork 805
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
Compilation failing with rustc 1.50.0 #1284
Comments
I had the same problem with rustc 1.50.0 and nom 6. After i downgrade nom to version 5.1.2 then rebuild it, everything works fine. |
This problem seems to be caused by funty 1.2 , see the following issues |
Currently I do this workaroud in my [dependencies]
nom = "6"
funty="=1.1.0" |
thank you for the report, I just released nom 6.1.1 with the fix in #1286 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
First, thank you so much for Nom! It's a so much useful piece of software.
When compiling nom with Rust stable 1.50.0, I get a compilation error.
It is a conflict between
BitMemory::BITS
frombitvec
andIsNumber::BITS
fromfunty
on structs that implements both traits.Here is the `cargo check` output.
The text was updated successfully, but these errors were encountered: