Skip to content

Commit a3277e4

Browse files
committed
chore: Bump jsonwebtoken crate to 10.0.0
1 parent 5e84bdf commit a3277e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ futures-channel = "0.3.31"
3333
futures-util = { version = "0.3.31", default-features = false, features = ["io"] }
3434

3535
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
36-
jsonwebtoken = { version = "9.3.1", default-features = false }
36+
jsonwebtoken = { version = "10.0.0", default-features = false, features = ["aws_lc_rs"]}
3737
tokio = { version = "1.38", optional = true, features = ["time"] }
3838

3939
[target.'cfg(target_arch = "wasm32")'.dependencies]

src/tenant_tokens.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use time::OffsetDateTime;
66
#[cfg(not(target_arch = "wasm32"))]
77
use uuid::Uuid;
88

9+
#[cfg_attr(test, derive(Clone))]
910
#[derive(Debug, Serialize, Deserialize)]
1011
#[serde(rename_all = "camelCase")]
1112
struct TenantTokenClaim {

0 commit comments

Comments
 (0)