From dad4bf54483028ae19194f527a3f0fe65a45e6b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 06:33:05 +0000 Subject: [PATCH] chore(deps): bump jsonwebtoken from 9.3.1 to 10.2.0 Bumps [jsonwebtoken](https://github.com/Keats/jsonwebtoken) from 9.3.1 to 10.2.0. - [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md) - [Commits](https://github.com/Keats/jsonwebtoken/compare/v9.3.1...v10.2.0) --- updated-dependencies: - dependency-name: jsonwebtoken dependency-version: 10.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 ++++--- crates/http/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 99c96d43..b2b090d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4588,16 +4588,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/crates/http/Cargo.toml b/crates/http/Cargo.toml index c57a7c20..61ffb407 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -38,7 +38,7 @@ client = ["dep:reqwest", "dep:gate-core"] [target.'cfg(not(target_arch = "wasm32"))'.dependencies] hyper-util = { workspace = true, features = ["server", "tokio"], optional = true } -jsonwebtoken = { version = "9.3", optional = true } +jsonwebtoken = { version = "10.2", optional = true } reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream", "zstd", "brotli", "gzip", "deflate"], optional = true } webauthn-rs = { version = "0.5", optional = true }