-
Notifications
You must be signed in to change notification settings - Fork 157
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
Crypto_Box doesn't compile on No_Std target #242
Comments
The error you're quoting is arising from Are you explicitly listing it in your lockfile somewhere? It's not You need to use the |
Well, I've created an empty project and added
As you can see, it does not contain |
Hmm, I was pulling in |
@tl8roy aah, seems you were hitting one of my least favorite Rust bugs: Fortunately there's a new resolver which fixes feature unification for these cases you can try out (see linked issue). |
I am building a PoC on a STM32 Nucleo board and want to use the Crypto_Box crate. The problem is that when I include it like:
crypto_box = {version = "0.5", default-features = false, features = ["heapless","u64_backend"]}
, I get the following error when I try to compile it:I'm not sure what features I need to include/exclude.
The text was updated successfully, but these errors were encountered: