Skip to content

Commit 6c3ce8e

Browse files
authored
chore(deps): bump jsonwebtoken 9.3 -> 10.4 (#1810)
Signed-off-by: Simo Lin <linsimo.mark@gmail.com>
1 parent 9f70916 commit 6c3ce8e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

crates/auth/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ subtle.workspace = true
2929
thiserror.workspace = true
3030
tracing.workspace = true
3131
# Only used by auth
32-
jsonwebtoken = { version = "9.3", default-features = false, features = ["use_pem"] }
32+
# jsonwebtoken 10 decouples crypto behind a provider trait; `rust_crypto` selects the
33+
# RustCrypto backend (matches the workspace's pure-Rust stack, no aws-lc-sys C build).
34+
jsonwebtoken = { version = "10.4", default-features = false, features = ["use_pem", "rust_crypto"] }
3335
sha2 = "0.11"
3436
url = "2.5"
3537

model_gateway/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ npyz = { version = "0.9", features = ["npz"] }
145145
opentelemetry-proto = { version = "0.32", features = ["gen-tonic"] }
146146
serial_test = "3.5"
147147
rsa = { version = "0.9", features = ["sha2"] }
148-
jsonwebtoken = "9.3"
148+
jsonwebtoken = { version = "10.4", features = ["rust_crypto"] }
149149
validator = "0.20.0"
150150
tracing-test = "0.2"
151151
tokio = { workspace = true, features = ["test-util"] }

0 commit comments

Comments
 (0)