Upgrade rand_core (#2201)

## Issue Addressed

N/A

## Proposed Changes

Upgrade `rand_core` to latest version to fix https://rustsec.org/advisories/RUSTSEC-2021-0023
This commit is contained in:
Pawan Dhananjay
2021-02-15 20:34:49 +00:00
parent 88cc222204
commit 4a357c9947
3 changed files with 8 additions and 8 deletions

View File

@@ -46,7 +46,7 @@ futures = "0.3.7"
genesis = { path = "../genesis" }
integer-sqrt = "0.1.5"
rand = "0.7.3"
rand_core = "0.5.1"
rand_core = "0.6.2"
proto_array = { path = "../../consensus/proto_array" }
lru = "0.6.0"
tempfile = "3.1.0"

View File

@@ -15,7 +15,7 @@ use genesis::interop_genesis_state;
use parking_lot::Mutex;
use rand::rngs::StdRng;
use rand::Rng;
use rand_core::SeedableRng;
use rand::SeedableRng;
use rayon::prelude::*;
use slog::Logger;
use slot_clock::TestingSlotClock;