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'd like to be able to use rand with the std feature so I get access to RngReadAdapter, but I don't want to be pulling in getrandom and rand_chacha. There should be a feature split that allows using the stdlib without extra deps.
The text was updated successfully, but these errors were encountered:
Sounds reasonable. It's a breaking change but the next release will be v0.9.0 (breaking) anyway.
This requires "rand_chacha?/std" syntax (see here) which is only available from Rust 1.60; the current MSRV is 1.56. I think bumping this is probably reasonable; 1.60 is from April 2022 and even Debian stable includes 1.63 by now.
The more controversial part is dropping getrandom from the std feature. I guess this is fine given that the current default feature is essentially just the current std anyway.
I'll give the other maintainers a chance to comment, but from my side this looks like a good change.
I'd like to be able to use rand with the std feature so I get access to
RngReadAdapter
, but I don't want to be pulling ingetrandom
andrand_chacha
. There should be a feature split that allows using the stdlib without extra deps.The text was updated successfully, but these errors were encountered: