Tony Arcieri
Tony Arcieri
@pinkforest it needs to be `os_rng` now
> it makes sense to keep all the methods of types across dalek crates that are dependent on CryptoRngCore ( like generate and random ) as R : RngCore +...
> The bulk of the changes needed are related to OsRng no longer implementing CryptoRng, instead opting to implement TryCryptorRng (presumably because things like reading from /dev/urandom means filesystem IO...
Closing in favor of #777
Adding or removing `#[inline]` should hopefully be measurement-driven. It really does benefit codegen frequently (the last time I saw such benefits was earlier today, as it were). It would be...
It's arguably part of `cargo-lock`'s public API by way of a `From` impl
We can just bump the version to 10.0.0 and remove the `From` impl (or rather, change it into a `pub(crate)` function). That should get it out of the public API...
> I think that's why we didn't go with it for 9.0.0? @Shnatsel I think it was just missed in v9.0.0. `.map_err(Error:from_toml)` or thereabouts isn't too bad and would keep...
@weihanglo looks good! Can you bump the version of `cargo-lock` to v0.10.0-pre as well to denote it's a breaking change?
Yeah, this is getting to why it hasn't been done yet. @weihanglo another option is you can temporarily move `cargo-lock` out of the toplevel workspace, by adding a `exclude =...