-
Notifications
You must be signed in to change notification settings - Fork 809
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
Regression: Memchr not compatible with no_std (since 834d442) #514
Comments
try to compile with `default-features = false" ? |
I attempted to compile nom with |
I think with rust-lang/cargo#712 (original idea here rust-lang/cargo#633 (comment) ) it can be achievable. |
Sure, I'll take a look into that over the next day or two. Thanks for your help, I'll report back here after my investigations. |
your fix is released in nom 3.1, thank you for your help! |
Memchr relies on libc, which is not available in a no_std context. The result is the following error:
The text was updated successfully, but these errors were encountered: