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
Currently the libc dependency version is listed as 0.2. There is a call to pthread_atfork, which is in libc. pthread_atfork doesn't appear to be in libc 0.2 though, so the compilation will fail if cargo doesn't grab one of the newer version of libc. The earliest I see it is in 0.2.30
The text was updated successfully, but these errors were encountered:
getrandom already requires 0.2.29 on UNIX, so although there's no reason not to bump the version, but it won't achieve anything since the next release will require this version anyway.
getrandom already requires 0.2.29 on UNIX, so although there's no reason not to bump the version, but it won't achieve anything since the next release will require this version anyway.
Fair enough, but I think it still makes sense for correctness. In theory, rand does not know about the dependencies of getrandom.
Currently the libc dependency version is listed as 0.2. There is a call to
pthread_atfork
, which is in libc.pthread_atfork
doesn't appear to be in libc 0.2 though, so the compilation will fail if cargo doesn't grab one of the newer version of libc. The earliest I see it is in 0.2.30The text was updated successfully, but these errors were encountered: