From c4230426ddac916ab6648289e449ca19855e32a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 04:44:05 +0000 Subject: [PATCH] chore(deps): update rand requirement from 0.8 to 0.10 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/commits/0.10.2) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bracket-terminal/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bracket-terminal/Cargo.toml b/bracket-terminal/Cargo.toml index 5f60799..92bd61f 100644 --- a/bracket-terminal/Cargo.toml +++ b/bracket-terminal/Cargo.toml @@ -63,7 +63,7 @@ web-sys = { version = "0.3", features=["console", "Attr", "CanvasRenderingContex "EventTarget", "HtmlCanvasElement", "HtmlElement", "HtmlInputElement", "Node", "Text", "Window", "KeyboardEvent", "MouseEvent"] } wasm-bindgen = "0.2" -rand = { version = "0.8", default-features = false } +rand = { version = "0.10", default-features = false } console_error_panic_hook = "0.1.6" winit = { version = "0.30" } web-time = "1.1.0"