rand 0.8 and rsa 0.5

rand 0.7 is kept as a dependency of age due to x25519-dalek 1.*.
This commit is contained in:
Jack Grigg 2021-08-03 03:20:33 +01:00
parent 3cca6a03cc
commit bfb0e0e021
10 changed files with 237 additions and 85 deletions

View file

@ -25,7 +25,7 @@ hkdf = "0.11"
sha2 = "0.9"
# - CSPRNG
rand = "0.7"
rand = "0.8"
# Parsing
cookie-factory = "0.3.1"

View file

@ -138,7 +138,7 @@ impl<R: Read, W: Write> Connection<R, W> {
let mut rng = thread_rng();
(0..2)
.map(move |_| {
if rng.gen_range(0, 100) < 5 {
if rng.gen_range(0..100) < 5 {
Some(grease_the_joint())
} else {
None