From cbddebfbf45783b838dfb3ed2b1e33e468affdf7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 17:41:43 +0000 Subject: [PATCH] fix(deps): update rust crate rand to 0.9 --- Cargo.toml | 2 +- crates/shadowsocks-service/Cargo.toml | 2 +- crates/shadowsocks/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5a1317fb6b3b..08ae6c80b585 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -233,7 +233,7 @@ directories = "5.0" xdg = "2.5" rpassword = "7.3" libc = { version = "0.2", features = ["extra_traits"] } -rand = "0.8" +rand = "0.9" futures = "0.3" tokio = { version = "1", features = ["rt", "signal"] } diff --git a/crates/shadowsocks-service/Cargo.toml b/crates/shadowsocks-service/Cargo.toml index 25a0ff6bd4a1..a44858a0eceb 100644 --- a/crates/shadowsocks-service/Cargo.toml +++ b/crates/shadowsocks-service/Cargo.toml @@ -148,7 +148,7 @@ lru_time_cache = "0.11" bytes = "1.7" byte_string = "1.0" byteorder = "1.5" -rand = { version = "0.8", features = ["small_rng"] } +rand = { version = "0.9", features = ["small_rng"] } sled = { version = "0.34.7", optional = true } futures = "0.3" diff --git a/crates/shadowsocks/Cargo.toml b/crates/shadowsocks/Cargo.toml index 6370e8d86f9a..b719bc137510 100644 --- a/crates/shadowsocks/Cargo.toml +++ b/crates/shadowsocks/Cargo.toml @@ -62,7 +62,7 @@ spin = { version = "0.9", features = ["std"] } pin-project = "1.1" bloomfilter = { version = "3.0.0", optional = true } thiserror = "2.0" -rand = { version = "0.8", optional = true } +rand = { version = "0.9", optional = true } lru_time_cache = { version = "0.11", optional = true } serde = { version = "1.0", features = ["derive"] }