Skip to content

Commit e22f92c

Browse files
committed
build(deps): upgrade jsonwebtoken from 9.3.1 to 10.1.0
1 parent 51b2da5 commit e22f92c

File tree

4 files changed

+231
-5
lines changed

4 files changed

+231
-5
lines changed

Cargo.lock

Lines changed: 229 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ hex = "0.4.3"
4949
hmac = "0.12.1"
5050
http-body-util = "0.1.3"
5151
indexmap = {version = "2.12.0", features = ["serde"] }
52-
jsonwebtoken = "9.3.1"
52+
jsonwebtoken = { version = "10.1.0", features = ["rust_crypto"] }
5353
k8s-openapi = { version = "0.26", default-features = false, features = ["latest"] }
5454
kube = { version = "2", default-features = false, features = ["runtime", "derive", "rustls-tls"] }
5555
octocrab = "0.47.0"

justfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ update-submodules:
4646

4747
# Run all commend in the local environment
4848
all:
49-
just clean
5049
just check
5150
just build
5251
just openapi

src/extractor/claims.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use crate::{
3636
};
3737

3838
/// Represents the claims extracted from a JWT token.
39-
#[derive(Debug, Serialize, Deserialize)]
39+
#[derive(Debug, Serialize, Deserialize, Clone)]
4040
pub struct Claims {
4141
/// Unique identifier of the user.
4242
pub id: String,

0 commit comments

Comments
 (0)