-
-
Notifications
You must be signed in to change notification settings - Fork 473
Description
Hi!
I was wondering if it would be possible to get a rand-0.5.0-pre.2 pre-release made, since… well… my colleagues and I appear to have gotten ourselves into a bit of a mismatched dependency hell. curve25519-dalek-0.17
is about to require rand = "^0.5.0-pre"
because we need the impl CryptoRng for OsRng
(which was added in #414, after the last pre-release). However, in tor, we're currently pinned to rand-0.5.0-pre.1
because I needed to implement a custom RNG using the rand_core::RngCore
trait, which then of course required using 0.5
(and the latest at the time was rand-0.5.0-pre.1
).
So, if it's possible and something you're willing to do, getting a new pre-release and putting that into dalek would allow us to do one of our current tasks for using Rust for signing and verification in tor, which would be super rad!
Thanks for all the work you do!