From 4d0920840670713f6576b7b64aef184fcc475d78 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 21:28:42 +0000 Subject: [PATCH] fix(deps): update rust crate rand_core to 0.9 --- Cargo.toml | 2 +- packages/jsonwebtoken/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9fd48cd6..48486816 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ resolver = "2" once_cell = "1" quickcheck = "1.0" rand = "0.9" - rand_core = { version = "0.6", features = ["getrandom"] } + rand_core = { version = "0.9", features = ["getrandom"] } serde = "1.0" serde_json = "1.0" xxhash-rust = { version = "0.8", features = ["xxh32", "const_xxh32", "xxh64", "const_xxh64", "xxh3", "const_xxh3"] } diff --git a/packages/jsonwebtoken/Cargo.toml b/packages/jsonwebtoken/Cargo.toml index 54987fb6..ed9b53e9 100644 --- a/packages/jsonwebtoken/Cargo.toml +++ b/packages/jsonwebtoken/Cargo.toml @@ -13,7 +13,7 @@ indexmap = { workspace = true, features = ["serde"] } jsonwebtoken = { workspace = true } napi = { workspace = true, default-features = false, features = ["napi3", "serde-json-ordered", "object_indexmap"] } napi-derive = { workspace = true } -rand_core = { version = "0.6", features = ["std"] } +rand_core = { version = "0.9", features = ["std"] } serde = { workspace = true } serde_json = { workspace = true }