From 62cff2cb0fb8fe34777ccaadc497a8741869c8de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 10:02:28 +0000 Subject: [PATCH] Bump jsonwebtoken from 9.3.1 to 10.3.0 in /backend Bumps [jsonwebtoken](https://github.com/Keats/jsonwebtoken) from 9.3.1 to 10.3.0. - [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md) - [Commits](https://github.com/Keats/jsonwebtoken/compare/v9.3.1...v10.3.0) --- updated-dependencies: - dependency-name: jsonwebtoken dependency-version: 10.3.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- backend/Cargo.lock | 9 ++++----- backend/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 808f7ba..40e68dd 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -940,10 +940,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", - "js-sys", "libc", "wasi", - "wasm-bindgen", ] [[package]] @@ -1408,16 +1406,17 @@ dependencies = [ [[package]] name = "jsonwebtoken" -version = "9.3.1" +version = "10.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" +checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1" dependencies = [ "base64", + "getrandom 0.2.17", "js-sys", "pem", - "ring", "serde", "serde_json", + "signature", "simple_asn1", ] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index a2363c6..f675959 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -13,7 +13,7 @@ sqlx = { version = "0.8.6", features = [ common = { path = "../common", features = ["server-side"] } axum = { version = "0.8.4", features = ["macros"] } axum-extra = { version = "0.10.1", features = ["cookie", "attachment"] } -jsonwebtoken = "9.3.1" +jsonwebtoken = "10.3.0" time = "0.3.36" color-eyre = "0.6.5" tracing = "0.1.41"