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
I think it's worth to add support for no_std. For example I am planning to implement Fortuna algorithm with no_std support (so it could be used on micro controllers) and it would be good to implement Rng trait so code implemented for it will be reused.
It can be done using std (or use-std, it seems there is currently no agreement on this) feature which will be enabled by default.
The text was updated successfully, but these errors were encountered:
I think it's worth to add support for
no_std
. For example I am planning to implement Fortuna algorithm withno_std
support (so it could be used on micro controllers) and it would be good to implementRng
trait so code implemented for it will be reused.It can be done using
std
(oruse-std
, it seems there is currently no agreement on this) feature which will be enabled by default.The text was updated successfully, but these errors were encountered: