diff --git a/Cargo.lock b/Cargo.lock index f61774b..d889311 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2790,8 +2790,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", - "rand_chacha", - "rand_core", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.3", ] [[package]] @@ -2801,7 +2811,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ "ppv-lite86", - "rand_core", + "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.3", ] [[package]] @@ -2813,6 +2833,15 @@ dependencies = [ "getrandom 0.2.16", ] +[[package]] +name = "rand_core" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +dependencies = [ + "getrandom 0.3.3", +] + [[package]] name = "rangemap" version = "1.6.0" @@ -2869,7 +2898,7 @@ dependencies = [ "base64-simd", "icy_sixel", "image", - "rand", + "rand 0.8.5", "ratatui 0.29.0", "rustix 0.38.44", "thiserror 1.0.69", @@ -2902,8 +2931,8 @@ dependencies = [ "once_cell", "paste", "profiling", - "rand", - "rand_chacha", + "rand 0.8.5", + "rand_chacha 0.3.1", "simd_helpers", "system-deps", "thiserror 1.0.69", @@ -3110,7 +3139,7 @@ dependencies = [ "llama_cpp", "pdf", "pdf-extract", - "rand", + "rand 0.9.2", "ratatui 0.29.0", "ratatui-image", "reqwest", @@ -3782,7 +3811,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "431b847a60fc7b1df94a5b1bcb3cdd7027bb0013b431b08038505e8891c577a2" dependencies = [ - "rand", + "rand 0.8.5", "ratatui 0.26.3", ] diff --git a/Cargo.toml b/Cargo.toml index 2cd37fe..f48dcea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ tracing = "0.1" tracing-subscriber = "0.3" libc = "0.2.175" chrono = { version = "0.4", features = ["serde"] } -rand = "0.8.5" +rand = "0.9.2" reqwest = { version = "0.12", features = ["json"] } [[bin]]