From c5a228bb98786800380b99ea98aa1e0704657582 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 04:24:23 +0000 Subject: [PATCH] chore(deps): bump jsonwebtoken from 9.3.0 to 10.1.0 Bumps [jsonwebtoken](https://github.com/Keats/jsonwebtoken) from 9.3.0 to 10.1.0. - [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md) - [Commits](https://github.com/Keats/jsonwebtoken/compare/v9.3.0...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, 16 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 88e8795..8a6f45f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1176,7 +1176,7 @@ dependencies = [ [[package]] name = "eldflow" -version = "0.1.0" +version = "0.0.1" dependencies = [ "anyhow", "argon2", @@ -2126,16 +2126,17 @@ dependencies = [ [[package]] name = "jsonwebtoken" -version = "9.3.0" +version = "10.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" +checksum = "3d119c6924272d16f0ab9ce41f7aa0bfef9340c00b0bb7ca3dd3b263d4a9150b" dependencies = [ - "base64 0.21.7", + "base64 0.22.1", + "getrandom", "js-sys", "pem", - "ring", "serde", "serde_json", + "signature", "simple_asn1", ] @@ -3311,6 +3312,15 @@ dependencies = [ "libc", ] +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "rand_core", +] + [[package]] name = "simple_asn1" version = "0.6.2" diff --git a/Cargo.toml b/Cargo.toml index 56aefcc..0815e3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ dotenv = { version = "0.15.0" } chrono = { version = "0.4.38", features = ["serde"] } bson = { version = "2.13.0", features = ["chrono-0_4"] } futures-util = { version = "0.3.31" } -jsonwebtoken = { version = "9.3.0", optional = true } +jsonwebtoken = { version = "10.1.0", optional = true } argon2 = { version = "0.5.3", optional = true } tokio = { version = "1.41.1", optional = true } uuid = { version = "1.11.0", optional = true }