diff --git a/Cargo.lock b/Cargo.lock index 7c3c02a..a702cf6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1671,7 +1671,7 @@ dependencies = [ "nextcloud_appinfo", "once_cell", "parse-display 0.10.0", - "rand 0.8.5", + "rand 0.9.2", "redis", "reqwest", "sd-notify", @@ -1710,7 +1710,7 @@ dependencies = [ "num-integer", "num-iter", "num-traits", - "rand 0.8.5", + "rand 0.8.6", "smallvec", "zeroize", ] @@ -2088,9 +2088,9 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" [[package]] name = "rand" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", "rand_chacha 0.3.1", @@ -2832,7 +2832,7 @@ dependencies = [ "memchr", "once_cell", "percent-encoding", - "rand 0.8.5", + "rand 0.8.6", "rsa", "serde", "sha1", @@ -2870,7 +2870,7 @@ dependencies = [ "md-5", "memchr", "once_cell", - "rand 0.8.5", + "rand 0.8.6", "serde", "serde_json", "sha2", @@ -3456,7 +3456,7 @@ dependencies = [ "http 1.4.0", "httparse", "log", - "rand 0.8.5", + "rand 0.8.6", "sha1", "thiserror 1.0.69", "url", diff --git a/Cargo.toml b/Cargo.toml index da38708..3f63e79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ smallvec = { version = "1.15.1", features = ["serde"] } reqwest = { version = "0.13.2", features = ["json"] } warp-real-ip = "0.2.0" parse-display = "0.10.0" -rand = { version = "0.8.5", features = ["small_rng"] } +rand = { version = "0.9.2", features = ["small_rng"] } ahash = "0.8.12" flexi_logger = { version = "0.31.8", features = ["colors"] } tokio-stream = { version = "0.1.17", features = ["net"] }