From d8f0c01b7c21992369806bdbc8c212668a373011 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 10 Dec 2025 05:53:02 +0000 Subject: [PATCH] fix(deps): update rust crate jsonwebtoken to v10 --- Cargo.lock | 7 ++++--- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 932c15c..0d4c91d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2609,16 +2609,17 @@ dependencies = [ [[package]] name = "jsonwebtoken" -version = "9.3.1" +version = "10.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" +checksum = "c76e1c7d7df3e34443b3621b459b066a7b79644f059fc8b2db7070c825fd417e" dependencies = [ "base64 0.22.1", + "getrandom 0.2.16", "js-sys", "pem", - "ring", "serde", "serde_json", + "signature 2.2.0", "simple_asn1", ] diff --git a/Cargo.toml b/Cargo.toml index 57bf309..19afb39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ uuid = { version = "1", features = ["v4", "serde"] } chrono = { version = "0.4", features = ["serde"] } bcrypt = "0.17" base64ct = "=1.8.1" -jsonwebtoken = "9" +jsonwebtoken = "10" anyhow = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] }