You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now most of the scalpel code works assuming std environment. However, there is no real reason why the same code cannot be adopted for no_std environment. At least following needs to be kept in mind
Use of hashbrown instead of std::collections::HashMap for no-std environments
I believe this is a bit involved. Let me create another issue, to use OnceCell, you may want to work on that. After that we can visit that. Fixing that will anyways be required.
Right now most of the scalpel code works assuming
std
environment. However, there is no real reason why the same code cannot be adopted forno_std
environment. At least following needs to be kept in mindhashbrown
instead ofstd::collections::HashMap
for no-std environmentslock_api
in place ofstd::sync::
crate::Error
compatible withno_std
environmentFor now for ease, let's simply restructure the
use
statements such that parts can bestd
andno_std
and then add those one by one.The text was updated successfully, but these errors were encountered: