From 4475067b6f8afe061358c619e85cb67e9978c251 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 22 Oct 2025 01:29:51 +0000 Subject: [PATCH] build(deps): bump jsonwebtoken from 9.3.1 to 10.1.0 Bumps [jsonwebtoken](https://github.com/Keats/jsonwebtoken) from 9.3.1 to 10.1.0. - [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md) - [Commits](https://github.com/Keats/jsonwebtoken/compare/v9.3.1...v10.1.0) --- updated-dependencies: - dependency-name: jsonwebtoken dependency-version: 10.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 935e62e..61b0354 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -280,7 +280,7 @@ dependencies = [ "hmac", "http-body-util", "indexmap", - "jsonwebtoken", + "jsonwebtoken 10.1.0", "k8s-openapi", "kube", "octocrab", @@ -1462,6 +1462,22 @@ dependencies = [ "simple_asn1", ] +[[package]] +name = "jsonwebtoken" +version = "10.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d119c6924272d16f0ab9ce41f7aa0bfef9340c00b0bb7ca3dd3b263d4a9150b" +dependencies = [ + "base64", + "getrandom 0.2.16", + "js-sys", + "pem", + "serde", + "serde_json", + "signature", + "simple_asn1", +] + [[package]] name = "k8s-openapi" version = "0.26.0" @@ -1839,7 +1855,7 @@ dependencies = [ "hyper-rustls", "hyper-timeout", "hyper-util", - "jsonwebtoken", + "jsonwebtoken 9.3.1", "once_cell", "percent-encoding", "pin-project", diff --git a/Cargo.toml b/Cargo.toml index 2a4015a..59d0667 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ hex = "0.4.3" hmac = "0.12.1" http-body-util = "0.1.3" indexmap = {version = "2.12.0", features = ["serde"] } -jsonwebtoken = "9.3.1" +jsonwebtoken = "10.1.0" k8s-openapi = { version = "0.26", default-features = false, features = ["latest"] } kube = { version = "2", default-features = false, features = ["runtime", "derive", "rustls-tls"] } octocrab = "0.47.0"