Skip to content

Commit 4a357c9

Browse files
committed
Upgrade rand_core (sigp#2201)
## Issue Addressed N/A ## Proposed Changes Upgrade `rand_core` to latest version to fix https://rustsec.org/advisories/RUSTSEC-2021-0023
1 parent 88cc222 commit 4a357c9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

beacon_node/beacon_chain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ futures = "0.3.7"
4646
genesis = { path = "../genesis" }
4747
integer-sqrt = "0.1.5"
4848
rand = "0.7.3"
49-
rand_core = "0.5.1"
49+
rand_core = "0.6.2"
5050
proto_array = { path = "../../consensus/proto_array" }
5151
lru = "0.6.0"
5252
tempfile = "3.1.0"

beacon_node/beacon_chain/src/test_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use genesis::interop_genesis_state;
1515
use parking_lot::Mutex;
1616
use rand::rngs::StdRng;
1717
use rand::Rng;
18-
use rand_core::SeedableRng;
18+
use rand::SeedableRng;
1919
use rayon::prelude::*;
2020
use slog::Logger;
2121
use slot_clock::TestingSlotClock;

0 commit comments

Comments
 (0)