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
#136 added rand/std to the std feature. This change forces rand to be in the dependency tree when std is enabled, even if the rand feature is disabled. This makes it impossible to use secp256k1 with std but without rand in the dependency tree.
The text was updated successfully, but these errors were encountered:
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. Or have a separate rand-std feature :/
#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: