Skip to content

Commit bcf2588

Browse files
Update to jsonwebtoken 10.2.0 to remove Clone impl
See Keats/jsonwebtoken#432
1 parent e90a3c2 commit bcf2588

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
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 = "10.0.0", default-features = false, features = ["aws_lc_rs"]}
36+
jsonwebtoken = { version = "10.2.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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use time::OffsetDateTime;
66
#[cfg(not(target_arch = "wasm32"))]
77
use uuid::Uuid;
88

9-
#[cfg_attr(test, derive(Clone))]
109
#[derive(Debug, Serialize, Deserialize)]
1110
#[serde(rename_all = "camelCase")]
1211
struct TenantTokenClaim {

0 commit comments

Comments
 (0)