diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index a4064e42..8250f529 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -49,4 +49,4 @@ sockets = ["dep:chacha20poly1305", "dep:dashmap", "tokio-util/codec", "tokio-uti build-data = "0" [dev-dependencies] -rand = "0.8.5" +rand = "0.9.1" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 445bd721..c66ccb1f 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -28,7 +28,7 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Crypto -rand = "0.8" +rand = "0.9" rsa = "0.9" sha2 = "0.10" openssl = "0.10" diff --git a/tests/Cargo.toml b/tests/Cargo.toml index abaa9860..2f862b34 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -11,7 +11,7 @@ beam-lib = { workspace = true, features = ["http-util"] } once_cell = "1" serde_json = "1" anyhow = "1" -rand = "0.8" +rand = "0.9" serde = { version = "1", features = ["derive"] } reqwest = { version = "0.12", features = ["stream"], default-features = false } futures = "0.3.28"