diff --git a/Cargo.toml b/Cargo.toml index ccb320bd..d4700770 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -235,7 +235,7 @@ build-time = "0.1" directories = "6.0" rpassword = "7.3" libc = { version = "0.2", features = ["extra_traits"] } -rand = "0.9" +rand = "0.10" futures = "0.3" tokio = { version = "1", features = ["rt", "signal"] } diff --git a/crates/shadowsocks-service/Cargo.toml b/crates/shadowsocks-service/Cargo.toml index ab6f4f24..84427f30 100644 --- a/crates/shadowsocks-service/Cargo.toml +++ b/crates/shadowsocks-service/Cargo.toml @@ -133,7 +133,7 @@ lru_time_cache = "0.11" bytes = "1.7" byte_string = "1.0" byteorder = "1.5" -rand = { version = "0.9", features = ["small_rng"] } +rand = { version = "0.10", features = ["small_rng"] } rocksdb = { version = "0.24", optional = true } futures = "0.3" diff --git a/crates/shadowsocks/Cargo.toml b/crates/shadowsocks/Cargo.toml index 05b1492a..414d47b2 100644 --- a/crates/shadowsocks/Cargo.toml +++ b/crates/shadowsocks/Cargo.toml @@ -61,7 +61,7 @@ spin = { version = "0.10", features = ["std"] } pin-project = "1.1" bloomfilter = { version = "3.0.0", optional = true } thiserror = "2.0" -rand = { version = "0.9", optional = true } +rand = { version = "0.10", optional = true } lru_time_cache = { version = "0.11", optional = true } serde = { version = "1.0", features = ["derive"] }