diff --git a/Cargo.lock b/Cargo.lock index 3258d62..9e7bccb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -560,7 +560,7 @@ dependencies = [ "chalk-core", "chrono", "ldap3", - "rand 0.9.4", + "rand 0.10.2", "reqwest", "serde", "serde_json", @@ -628,7 +628,7 @@ dependencies = [ "hex", "parking_lot", "qrcode", - "rand 0.9.4", + "rand 0.10.2", "reqwest", "serde", "serde_json", @@ -660,7 +660,7 @@ dependencies = [ "hkdf 0.13.0", "hmac 0.13.0", "lettre", - "rand 0.9.4", + "rand 0.10.2", "reqwest", "serde", "serde_json", @@ -703,7 +703,7 @@ dependencies = [ "chalk-core", "chrono", "jsonwebtoken", - "rand 0.9.4", + "rand 0.10.2", "reqwest", "serde", "serde_json", @@ -732,7 +732,7 @@ dependencies = [ "jsonwebtoken", "qrcode", "quick-xml", - "rand 0.9.4", + "rand 0.10.2", "rcgen", "rsa", "serde", @@ -1561,18 +1561,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "getrandom" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" -dependencies = [ - "cfg-if", - "libc", - "r-efi 5.3.0", - "wasip2", -] - [[package]] name = "getrandom" version = "0.4.2" @@ -1582,7 +1570,7 @@ dependencies = [ "cfg-if", "js-sys", "libc", - "r-efi 6.0.0", + "r-efi", "rand_core 0.10.1", "wasip2", "wasip3", @@ -2897,12 +2885,6 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "478e0585659a122aa407eb7e3c0e1fa51b1d8a870038bd29f0cf4a8551eea972" -[[package]] -name = "r-efi" -version = "5.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" - [[package]] name = "r-efi" version = "6.0.0" @@ -2916,20 +2898,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", - "rand_chacha 0.3.1", + "rand_chacha", "rand_core 0.6.4", ] -[[package]] -name = "rand" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" -dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.5", -] - [[package]] name = "rand" version = "0.10.2" @@ -2951,16 +2923,6 @@ dependencies = [ "rand_core 0.6.4", ] -[[package]] -name = "rand_chacha" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" -dependencies = [ - "ppv-lite86", - "rand_core 0.9.5", -] - [[package]] name = "rand_core" version = "0.6.4" @@ -2970,15 +2932,6 @@ dependencies = [ "getrandom 0.2.17", ] -[[package]] -name = "rand_core" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" -dependencies = [ - "getrandom 0.3.4", -] - [[package]] name = "rand_core" version = "0.10.1" @@ -3930,7 +3883,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.4", + "getrandom 0.4.2", "once_cell", "rustix", "windows-sys 0.52.0", diff --git a/Cargo.toml b/Cargo.toml index 614f2a2..52d4f3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ qrcode = "0.14" image = { version = "0.25", default-features = false, features = ["png"] } rcgen = "0.14" argon2 = { version = "0.5", features = ["std"] } -rand = "0.9" +rand = "0.10" base64 = "0.22" tower = "0.5" csv = "1.3"