-
Notifications
You must be signed in to change notification settings - Fork 160
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
Chacha20poly1305 versions after and including 0.11.0-pre.1 require alloc on no_std. #643
Comments
My best guess is |
But why is it a hard requirement? Most other crates have optional support for zeroize.
Yeah, the problem is here. |
It was likely introduced in recent changes. I’m on a phone so I would suggest using the git history to answer your question. |
Hm, it looks like |
chacha20poly1305 = { version = "0.11.0-pre.1", default-features = false, features = [] }
Build result:
chacha20poly1305 = { version = "0.10.1", default-features = false, features = [] }
builds successfuly.I might be missing something obvious, it's late here :)
The text was updated successfully, but these errors were encountered: