From 31fb524a6817c02f374fa5bf67cccf2f5cb77285 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 12:31:10 +0000 Subject: [PATCH 1/2] chore(deps): Update jsonwebtoken requirement from 9.2 to 10.1 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/v9.2.0...v10.1.0) --- updated-dependencies: - dependency-name: jsonwebtoken dependency-version: 10.1.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- services/azure-storage/Cargo.toml | 2 +- services/google/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/azure-storage/Cargo.toml b/services/azure-storage/Cargo.toml index edde2b35..94a6c626 100644 --- a/services/azure-storage/Cargo.toml +++ b/services/azure-storage/Cargo.toml @@ -41,7 +41,7 @@ serde_json = { workspace = true } sha1 = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -jsonwebtoken = "9.2" +jsonwebtoken = "10.1" pem = "3.0" rsa = { workspace = true } diff --git a/services/google/Cargo.toml b/services/google/Cargo.toml index 339d1fd7..8978b9b2 100644 --- a/services/google/Cargo.toml +++ b/services/google/Cargo.toml @@ -29,7 +29,7 @@ rust-version.workspace = true [dependencies] async-trait = { workspace = true } http = { workspace = true } -jsonwebtoken = "9.2" +jsonwebtoken = "10.1" log = { workspace = true } percent-encoding = { workspace = true } rand = { workspace = true } From 439ad2acf166d6ba979a740fff5034ef590260e9 Mon Sep 17 00:00:00 2001 From: Kingsword Date: Fri, 24 Oct 2025 09:22:02 +0800 Subject: [PATCH 2/2] add rust_crypto features --- services/azure-storage/Cargo.toml | 2 +- services/google/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/azure-storage/Cargo.toml b/services/azure-storage/Cargo.toml index 94a6c626..51bbe099 100644 --- a/services/azure-storage/Cargo.toml +++ b/services/azure-storage/Cargo.toml @@ -41,7 +41,7 @@ serde_json = { workspace = true } sha1 = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -jsonwebtoken = "10.1" +jsonwebtoken = { version = "10.1", features = ["rust_crypto"] } pem = "3.0" rsa = { workspace = true } diff --git a/services/google/Cargo.toml b/services/google/Cargo.toml index 8978b9b2..323dfabe 100644 --- a/services/google/Cargo.toml +++ b/services/google/Cargo.toml @@ -29,7 +29,7 @@ rust-version.workspace = true [dependencies] async-trait = { workspace = true } http = { workspace = true } -jsonwebtoken = "10.1" +jsonwebtoken = { version = "10.1", features = ["rust_crypto"] } log = { workspace = true } percent-encoding = { workspace = true } rand = { workspace = true }