From 2533baaeb31e90cf036fdae706b4bf59ca245bff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 23:40:30 +0100 Subject: [PATCH] build(deps): bump rand from 0.9.2 to 0.10.2 in /frontend/editor/src-tauri (#7065) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [rand](https://github.com/rust-random/rand) from 0.9.2 to 0.10.2.
Changelog

Sourced from rand's changelog.

[0.10.2] — 2026-07-02

Fixes

Changes

#1769: rust-random/rand#1769 #1790: rust-random/rand#1790 #1791: rust-random/rand#1791

[0.10.1] — 2026-02-11

This release includes a fix for a soundness bug; see #1763.

Changes

#1761: rust-random/rand#1761 #1763: rust-random/rand#1763

[0.10.0] - 2026-02-08

Changes

Additions

Removals

... (truncated)

Commits

--------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> --- frontend/editor/src-tauri/Cargo.lock | 2 +- frontend/editor/src-tauri/Cargo.toml | 2 +- frontend/editor/src-tauri/src/commands/auth.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/editor/src-tauri/Cargo.lock b/frontend/editor/src-tauri/Cargo.lock index 8e710cd776..77875af9df 100644 --- a/frontend/editor/src-tauri/Cargo.lock +++ b/frontend/editor/src-tauri/Cargo.lock @@ -4554,7 +4554,7 @@ dependencies = [ "objc2-app-kit", "objc2-foundation", "objc2-pdf-kit", - "rand 0.9.2", + "rand 0.10.2", "reqwest 0.12.28", "serde", "serde_json", diff --git a/frontend/editor/src-tauri/Cargo.toml b/frontend/editor/src-tauri/Cargo.toml index c372011489..c7ef871d84 100644 --- a/frontend/editor/src-tauri/Cargo.toml +++ b/frontend/editor/src-tauri/Cargo.toml @@ -45,7 +45,7 @@ url = "2.5" urlencoding = "2.1" sha2 = "0.11" base64 = "0.22" -rand = "0.9" +rand = "0.10" [target.'cfg(target_os = "macos")'.dependencies] core-foundation = "0.10" diff --git a/frontend/editor/src-tauri/src/commands/auth.rs b/frontend/editor/src-tauri/src/commands/auth.rs index b906bbbf7d..6734ba6025 100644 --- a/frontend/editor/src-tauri/src/commands/auth.rs +++ b/frontend/editor/src-tauri/src/commands/auth.rs @@ -6,7 +6,7 @@ use tauri_plugin_store::StoreExt; use tiny_http::{Response, Server}; use sha2::{Sha256, Digest}; use base64::{Engine as _, engine::general_purpose::URL_SAFE_NO_PAD}; -use rand::Rng; +use rand::RngExt; use rand::distr::Alphanumeric; const STORE_FILE: &str = "connection.json";