From 67fc2e197752573337aa0143e81182f44679a1b3 Mon Sep 17 00:00:00 2001 From: SH Weng Date: Sun, 9 Feb 2025 14:22:15 +0800 Subject: [PATCH] Follow up changes in rand 0.9.0 In rand 0.9.0 (2025-01-27), `SeedableRng::from_entropy` has been renamed to `from_os_rng`. This change will lead to build error, and this commit fixed it. See also: https://github.com/rust-random/rand/blob/0bc3f652c4500406b343a517e058caedd1f095a9/rand_core/CHANGELOG.md?plain=1#L19 --- fake-tcp/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fake-tcp/src/lib.rs b/fake-tcp/src/lib.rs index bf6647a..a431651 100644 --- a/fake-tcp/src/lib.rs +++ b/fake-tcp/src/lib.rs @@ -402,7 +402,7 @@ impl Stack { /// Connects to the remote end. `None` returned means /// the connection attempt failed. pub async fn connect(&mut self, addr: SocketAddr) -> Option { - let mut rng = SmallRng::from_entropy(); + let mut rng = SmallRng::from_os_rng(); for local_port in rng.gen_range(32768..=60999)..=60999 { let local_addr = SocketAddr::new( if addr.is_ipv4() {