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
This has the problem that all users of quickcheck need to depend on the same version of rand as quickcheck if they want to use the rest of rand's API. If quickcheck had:
pub extern crate rand;
pub use rand::Rng;
then users can use quickcheck::rand to get access to the full rand API to interact with quickcheck, while not being constrained about what version of rand they want for their own purposes.