diff --git a/Cargo.lock b/Cargo.lock index ca37c92ced7..22c006b9746 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3626,16 +3626,17 @@ dependencies = [ [[package]] name = "jsonwebtoken" -version = "9.3.1" +version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" +checksum = "f1417155a38e99d7704ddb3ea7445fe57fdbd5d756d727740a9ed8b9ebaed6e1" dependencies = [ "base64 0.22.1", + "getrandom 0.2.16", "js-sys", "pem", - "ring", "serde", "serde_json", + "signature", "simple_asn1", ] diff --git a/Cargo.toml b/Cargo.toml index 39a96b5b7b2..4e3075bbcd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -155,7 +155,7 @@ claims = "=0.8.0" diesel = { version = "=2.2.12", features = ["r2d2"] } googletest = "=0.14.2" insta = { version = "=1.43.2", features = ["glob", "json", "redactions"] } -jsonwebtoken = "=9.3.1" +jsonwebtoken = "=10.0.0" quoted_printable = "=0.5.1" regex = "=1.11.3" sentry = { version = "=0.43.0", features = ["test"] } diff --git a/crates/crates_io_trustpub/Cargo.toml b/crates/crates_io_trustpub/Cargo.toml index 01fe51ffa61..a3dc6702bb1 100644 --- a/crates/crates_io_trustpub/Cargo.toml +++ b/crates/crates_io_trustpub/Cargo.toml @@ -15,7 +15,7 @@ anyhow = "=1.0.100" async-trait = "=0.1.89" bon = { version = "=3.8.1", optional = true } chrono = { version = "=0.4.42", features = ["serde"] } -jsonwebtoken = "=9.3.1" +jsonwebtoken = "=10.0.0" mockall = { version = "=0.13.1", optional = true } rand = "=0.9.2" reqwest = { version = "=0.12.23", features = ["gzip", "json"] }