diff --git a/Cargo.lock b/Cargo.lock index ac0ae62..9e47eac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -745,7 +745,7 @@ dependencies = [ "prometheus", "pulldown-cmark 0.13.4", "r2d2", - "rand 0.8.6", + "rand 0.9.4", "ratatui", "regex", "ring", @@ -791,7 +791,7 @@ dependencies = [ "parking_lot", "prometheus", "r2d2", - "rand 0.8.6", + "rand 0.9.4", "ratatui", "ratatui-image", "rodio", @@ -824,7 +824,7 @@ dependencies = [ "parking_lot", "prometheus", "r2d2", - "rand 0.8.6", + "rand 0.9.4", "rpassword", "rusqlite", "rustls", diff --git a/Cargo.toml b/Cargo.toml index 6a5eaed..878f102 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ sha2 = "0.10" hex = "0.4" dashmap = "6" clap = { version = "4.6", features = ["derive"] } -rand = "0.8.6" +rand = "0.9.4" chacha20poly1305 = "0.10" once_cell = "1" pbkdf2 = "0.12" diff --git a/src/client/Cargo.toml b/src/client/Cargo.toml index aeefa78..e484f77 100644 --- a/src/client/Cargo.toml +++ b/src/client/Cargo.toml @@ -36,7 +36,7 @@ rpassword = "7" tokio-rustls = { version = "0.26.4", default-features = false, features = ["ring", "logging", "tls12"] } rustls = { version = "0.23.37", default-features = false, features = ["ring", "logging", "std", "tls12"] } base64 = "0.22" -rand = "0.8.6" +rand = "0.9.4" bitflags = "2" parking_lot = "0.12" crossterm = "0.29" diff --git a/src/server/Cargo.toml b/src/server/Cargo.toml index 5d74305..7045d8b 100644 --- a/src/server/Cargo.toml +++ b/src/server/Cargo.toml @@ -38,6 +38,6 @@ rustls-pki-types = "1" base64 = "0.22" bitflags = "2" parking_lot = "0.12" -rand = "0.8.6" +rand = "0.9.4" rpassword = "7" zeroize = "1.7"