From ea07bcdc2f2cbbbb7381d24e0a5bbc6524eaa848 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 10:01:55 +0000 Subject: [PATCH] chore(deps): update rust crate getrandom to 0.4 --- crates/tauri-utils/Cargo.toml | 4 ++-- crates/tauri/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/tauri-utils/Cargo.toml b/crates/tauri-utils/Cargo.toml index 2a8af1473..e3d7bf0b7 100644 --- a/crates/tauri-utils/Cargo.toml +++ b/crates/tauri-utils/Cargo.toml @@ -30,7 +30,7 @@ quote = { version = "1", optional = true } schemars = { version = "0.8.21", features = ["url", "uuid1"], optional = true } serde_with = "3" aes-gcm = { version = "0.10", optional = true } -getrandom = { version = "0.3", optional = true, features = ["std"] } +getrandom = { version = "0.4", optional = true, features = ["std"] } serialize-to-javascript = { version = "0.1.2", optional = true } ctor = "0.2" json5 = { version = "0.4", optional = true } @@ -55,7 +55,7 @@ http = "1" swift-rs = { version = "1", optional = true, features = ["build"] } [dev-dependencies] -getrandom = { version = "0.3", features = ["std"] } +getrandom = { version = "0.4", features = ["std"] } serial_test = "3" tauri = { path = "../tauri" } diff --git a/crates/tauri/Cargo.toml b/crates/tauri/Cargo.toml index 7f0ed98cd..f96fa08bd 100644 --- a/crates/tauri/Cargo.toml +++ b/crates/tauri/Cargo.toml @@ -61,7 +61,7 @@ tauri-utils = { version = "2.8.2", features = [ "resources", ], path = "../tauri-utils" } tauri-runtime-wry = { version = "2.10.0", path = "../tauri-runtime-wry", default-features = false, optional = true } -getrandom = "0.3" +getrandom = "0.4" serde_repr = "0.1" http = "1" dirs = "6"