Skip to content

Commit f017c04

Browse files
authored
Merge pull request #2211 from hermit-os/dependabot/cargo/rand_chacha-0.10.0
build(deps): upgrade rand_chacha to 0.10
2 parents 7a8c54b + 3bdc4c2 commit f017c04

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ mem-barrier = { version = "0.1.0", optional = true, features = ["nightly"] }
131131
num_enum = { version = "0.7", default-features = false }
132132
pci-ids = { version = "0.2", optional = true }
133133
pci_types = { version = "0.10" }
134-
rand_chacha = { version = "0.9", default-features = false }
134+
rand_chacha = { version = "0.10", default-features = false }
135135
shell-words = { version = "1.1", default-features = false }
136136
simple-shell = { version = "0.0.1", optional = true }
137137
smallvec = { version = "1", features = ["const_new"] }

src/entropy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
use hermit_sync::InterruptTicketMutex;
77
use rand_chacha::ChaCha20Rng;
8-
use rand_chacha::rand_core::{RngCore, SeedableRng};
8+
use rand_chacha::rand_core::{Rng, SeedableRng};
99

1010
use crate::arch::kernel::processor::{get_timer_ticks, seed_entropy};
1111
use crate::errno::Errno;

0 commit comments

Comments
 (0)