From 347b5e146b42a6d9c14e2ea3257a1aca6724a149 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 20:36:42 +0000 Subject: [PATCH 1/2] fix(deps): update rust crate jsonwebtoken to v10 [security] --- crates/zitadel/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zitadel/Cargo.toml b/crates/zitadel/Cargo.toml index 2ce0334..246f01a 100644 --- a/crates/zitadel/Cargo.toml +++ b/crates/zitadel/Cargo.toml @@ -102,7 +102,7 @@ axum-extra = { version = "0.12.0", optional = true, features = ["typed-header"] base64-compat = { version = "1", optional = true } custom_error = "1.9.2" document-features = { version = "0.2.8", optional = true } -jsonwebtoken = { version = "9.3.0", optional = true } +jsonwebtoken = { version = "10.3.0", optional = true } moka = { version = "0.12.8", features = ["future"], optional = true } openidconnect = { version = "4.0.0", optional = true } reqwest = { version = "0.12.12", features = ["json", "rustls-tls"], default-features = false, optional = true } From 5421b0e0592ca515992a6e061db943200fb0dc8c Mon Sep 17 00:00:00 2001 From: Hannes Herrmann Date: Wed, 11 Mar 2026 23:36:58 +0100 Subject: [PATCH 2/2] fix(deps): add missing crypto lib feature for jsonwebtoken --- crates/zitadel/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zitadel/Cargo.toml b/crates/zitadel/Cargo.toml index 246f01a..ad49045 100644 --- a/crates/zitadel/Cargo.toml +++ b/crates/zitadel/Cargo.toml @@ -102,7 +102,7 @@ axum-extra = { version = "0.12.0", optional = true, features = ["typed-header"] base64-compat = { version = "1", optional = true } custom_error = "1.9.2" document-features = { version = "0.2.8", optional = true } -jsonwebtoken = { version = "10.3.0", optional = true } +jsonwebtoken = { version = "10.3.0", optional = true, features = ["aws_lc_rs"] } moka = { version = "0.12.8", features = ["future"], optional = true } openidconnect = { version = "4.0.0", optional = true } reqwest = { version = "0.12.12", features = ["json", "rustls-tls"], default-features = false, optional = true }