diff --git a/Cargo.lock b/Cargo.lock index 29f2cf7a..9b24ff33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -810,7 +810,7 @@ version = "0.0.0" dependencies = [ "clap", "crossterm", - "rand 0.9.0", + "rand 0.9.1", "ratatui", "termion", "termwiz", @@ -825,7 +825,7 @@ dependencies = [ "indoc", "itertools 0.13.0", "palette", - "rand 0.9.0", + "rand 0.9.1", "rand_chacha 0.9.0", "ratatui", "strum", @@ -1573,7 +1573,7 @@ version = "0.0.0" dependencies = [ "color-eyre", "crossterm", - "rand 0.9.0", + "rand 0.9.1", "ratatui", ] @@ -1887,7 +1887,7 @@ dependencies = [ "color-eyre", "crossterm", "line_drawing", - "rand 0.9.0", + "rand 0.9.1", "ratatui", ] @@ -2454,13 +2454,12 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94" +checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" dependencies = [ "rand_chacha 0.9.0", "rand_core 0.9.3", - "zerocopy", ] [[package]] @@ -2593,7 +2592,7 @@ dependencies = [ "instability", "palette", "pretty_assertions", - "rand 0.9.0", + "rand 0.9.1", "rand_chacha 0.9.0", "ratatui-core", "ratatui-crossterm", @@ -3990,7 +3989,7 @@ version = "0.0.0" dependencies = [ "color-eyre", "crossterm", - "rand 0.9.0", + "rand 0.9.1", "ratatui", ] diff --git a/examples/apps/demo/Cargo.toml b/examples/apps/demo/Cargo.toml index 135b23ef..e7d02675 100644 --- a/examples/apps/demo/Cargo.toml +++ b/examples/apps/demo/Cargo.toml @@ -14,7 +14,7 @@ termwiz = ["ratatui/termwiz", "dep:termwiz"] [dependencies] clap = { version = "4.5.37", features = ["derive"] } crossterm = { workspace = true, optional = true } -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true termwiz = { workspace = true, optional = true } diff --git a/examples/apps/demo2/Cargo.toml b/examples/apps/demo2/Cargo.toml index b9f33b1e..33d5d7f7 100644 --- a/examples/apps/demo2/Cargo.toml +++ b/examples/apps/demo2/Cargo.toml @@ -11,7 +11,7 @@ crossterm.workspace = true indoc.workspace = true itertools.workspace = true palette = "0.7.6" -rand = "0.9.0" +rand = "0.9.1" rand_chacha = "0.9.0" ratatui = { workspace = true, features = ["all-widgets"] } strum.workspace = true diff --git a/examples/apps/inline/Cargo.toml b/examples/apps/inline/Cargo.toml index 880e401a..b1b5885e 100644 --- a/examples/apps/inline/Cargo.toml +++ b/examples/apps/inline/Cargo.toml @@ -8,7 +8,7 @@ rust-version.workspace = true [dependencies] color-eyre.workspace = true crossterm.workspace = true -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true [lints] diff --git a/examples/apps/mouse-drawing/Cargo.toml b/examples/apps/mouse-drawing/Cargo.toml index 70f72a7b..32311565 100644 --- a/examples/apps/mouse-drawing/Cargo.toml +++ b/examples/apps/mouse-drawing/Cargo.toml @@ -10,7 +10,7 @@ color-eyre.workspace = true crossterm.workspace = true ## a collection of line drawing algorithms (e.g. Bresenham's line algorithm) line_drawing = "1.0.1" -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true [lints] diff --git a/examples/apps/weather/Cargo.toml b/examples/apps/weather/Cargo.toml index 72925ad6..eca68699 100644 --- a/examples/apps/weather/Cargo.toml +++ b/examples/apps/weather/Cargo.toml @@ -8,7 +8,7 @@ rust-version.workspace = true [dependencies] color-eyre.workspace = true crossterm.workspace = true -rand = "0.9.0" +rand = "0.9.1" ratatui.workspace = true [lints] diff --git a/ratatui/Cargo.toml b/ratatui/Cargo.toml index 1c6a88bf..078d1857 100644 --- a/ratatui/Cargo.toml +++ b/ratatui/Cargo.toml @@ -124,7 +124,7 @@ fakeit = "1.1" futures = "0.3.30" indoc = "2" pretty_assertions = "1.4.0" -rand = "0.9.0" +rand = "0.9.1" rand_chacha = "0.9.0" rstest = "0.25.0" serde_json.workspace = true