We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The doc tests fail because extern crate rand; picks up the rand crate built-in to the compiler, not this one, meaning things like random don't exist.
extern crate rand;
rand
random
The text was updated successfully, but these errors were encountered:
Probably fixed by rust-lang/rust#21782, when that makes it into the nightly.
Sorry, something went wrong.
@huonw this can be closed, I believe.
Merge pull request #1 from dhardy/rand_os
bddd20d
rand_os: doc and cargo improvements
No branches or pull requests
The doc tests fail because
extern crate rand;
picks up therand
crate built-in to the compiler, not this one, meaning things likerandom
don't exist.The text was updated successfully, but these errors were encountered: