From 4f54e9b30ccd09eca2f0ef3b8da5d6bc6cb16167 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 14:27:02 +0000 Subject: [PATCH] Update jsonwebtoken requirement in /user-management-service Updates the requirements on [jsonwebtoken](https://github.com/Keats/jsonwebtoken) to permit the latest version. - [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md) - [Commits](https://github.com/Keats/jsonwebtoken/compare/v10.0.0...v11.0.0) --- updated-dependencies: - dependency-name: jsonwebtoken dependency-version: 11.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- user-management-service/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user-management-service/Cargo.toml b/user-management-service/Cargo.toml index 4a51161..f299ef0 100644 --- a/user-management-service/Cargo.toml +++ b/user-management-service/Cargo.toml @@ -20,7 +20,7 @@ glc = { path = "../game-library-common" } hex = "0.4" hmac = "0.13" itertools = "0.14" -jsonwebtoken = { version = "10", default-features = false, features = ["aws_lc_rs"] } +jsonwebtoken = { version = "11", default-features = false, features = ["aws_lc_rs"] } mime = "0.3" rand = "0.10" reqwest = { version = "0.13", features = ["cookies", "json"] }