-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
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
Cannot use std
without rand
dependency
#150
Comments
Hmm that's not good. I'm not sure what solutions rust offer. we might need to default rand to include std and if you want rand you must get std. |
Frustrating. rust-lang/cargo#3494 I think a separate |
Merged
Can we close? #176 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#136 added
rand/std
to thestd
feature. This change forcesrand
to be in the dependency tree whenstd
is enabled, even if therand
feature is disabled. This makes it impossible to usesecp256k1
withstd
but withoutrand
in the dependency tree.The text was updated successfully, but these errors were encountered: