From 9bf7a034040e84bb18eb260ce0f7240e42c21b75 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Feb 2026 10:15:15 +0000 Subject: [PATCH] deps(deps): Update getrandom requirement from 0.2 to 0.4 Updates the requirements on [getrandom](https://github.com/rust-random/getrandom) to permit the latest version. - [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/getrandom/compare/v0.2.0...v0.4.0) --- updated-dependencies: - dependency-name: getrandom dependency-version: 0.4.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- clients/wraith-stream/src-tauri/Cargo.toml | 2 +- crates/wraith-crypto/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 169d928d..7778a00f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ rand = { version = "0.8", features = ["small_rng"] } rand_core = { version = "0.6", features = ["getrandom"] } rand_distr = "0.4" zeroize = { version = "1.7", features = ["derive"] } -getrandom = "0.2" +getrandom = "0.4" argon2 = "0.5" # Kernel interfaces diff --git a/clients/wraith-stream/src-tauri/Cargo.toml b/clients/wraith-stream/src-tauri/Cargo.toml index ddf14dee..15719bce 100644 --- a/clients/wraith-stream/src-tauri/Cargo.toml +++ b/clients/wraith-stream/src-tauri/Cargo.toml @@ -43,7 +43,7 @@ rusqlite = { version = "0.38", features = ["bundled"] } blake3 = "1" chacha20poly1305 = "0.10" rand = "0.8" -getrandom = "0.2" +getrandom = "0.4" # Serialization serde = { version = "1.0", features = ["derive"] } diff --git a/crates/wraith-crypto/Cargo.toml b/crates/wraith-crypto/Cargo.toml index a9b90b28..8c06cf21 100644 --- a/crates/wraith-crypto/Cargo.toml +++ b/crates/wraith-crypto/Cargo.toml @@ -21,7 +21,7 @@ blake3 = { version = "1.5", default-features = false } snow = { version = "0.10", default-features = false, features = ["default-resolver", "default-resolver-crypto"] } rand_core = { version = "0.6", default-features = false, features = ["getrandom"] } zeroize = { version = "1.7", default-features = false, features = ["alloc", "derive"] } -getrandom = { version = "0.2", default-features = false } +getrandom = { version = "0.4", default-features = false } thiserror = { version = "2.0", default-features = false } argon2 = { version = "0.5", default-features = false, features = ["alloc"] } serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }