-
Notifications
You must be signed in to change notification settings - Fork 158
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
bump rand_core
from 0.6.4
to 0.9.2
; edition 2024; bump MSRV to 1.85
#478
base: master
Are you sure you want to change the base?
Conversation
ca5074d
to
79160ae
Compare
e8d858e
to
6402dde
Compare
rand_core
from 0.6.4
to 0.9.0
rand_core
from 0.6.4
to 0.9.1
3babac7
to
a61d022
Compare
1c7dc3c
to
1aab5a9
Compare
1aab5a9
to
612d94f
Compare
rand_core
from 0.6.4
to 0.9.1
rand_core
from 0.6.4
to 0.9.2
612d94f
to
c3e9a87
Compare
I believe this is now ready to merge. |
nightly doesn't have |
You need to update the pinned nightly version here. Could you also look into why the minimal-versions job fails? |
4e1191a
to
241340f
Compare
Ha i missed the pin! thank you! I think the minimal-version was because I forgot to bump the version of |
241340f
to
82d679f
Compare
tests fixed \o/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comments below are not relevant to this PR per se, but it could be worth to fix them while we are at it.
82d679f
to
20fcb3e
Compare
src/pss/signing_key.rs
Outdated
@@ -139,7 +151,7 @@ where | |||
D: Digest + FixedOutputReset, | |||
{ | |||
fn sign_prehash(&self, prehash: &[u8]) -> signature::Result<Signature> { | |||
self.sign_prehash_with_rng(&mut OsRng, prehash) | |||
self.sign_prehash_with_rng(&mut OsRng.unwrap_err(), prehash) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe something we can improve here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
requires: RustCrypto/traits#1765
84f79c1
to
e174e9f
Compare
huum, wait I also need to pull RustCrypto/traits#1766 |
e174e9f
to
35f1ab1
Compare
35f1ab1
to
503031a
Compare
rand_core
from 0.6.4
to 0.9.2
rand_core
from 0.6.4
to 0.9.2
; edition 2024; bump MSRV to 1.85
This also bumps the dependency of
signature
from2.3.0-pre.4
to2.3.0-pre.5
This pulls:
RandomMod::try_random_mod
andRandom::try_random
methods crypto-bigint#770Sized
requirements on rng traits#1765Sized
requirements on async signer traits traits#1766Fixes #466