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 am writing a no_std Linux application that runs without libc (using raw syscalls). Unfortunately the rand crate depends on libc for the ReseedingRng wrapper, which breaks my build.
As was discussed in #911, could the libc crate be changed into an optional dependency that only gets imported when the "std" feature is enabled?
The text was updated successfully, but these errors were encountered:
I am writing a no_std Linux application that runs without libc (using raw syscalls). Unfortunately the
rand
crate depends onlibc
for theReseedingRng
wrapper, which breaks my build.As was discussed in #911, could the libc crate be changed into an optional dependency that only gets imported when the "std" feature is enabled?
The text was updated successfully, but these errors were encountered: