diff --git a/Cargo.lock b/Cargo.lock index c9b8e1dd..55d8b02c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -898,8 +898,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if", + "js-sys", "libc", "wasi", + "wasm-bindgen", ] [[package]] @@ -1291,11 +1293,12 @@ dependencies = [ [[package]] name = "jsonwebtoken" -version = "9.1.0" +version = "9.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "155c4d7e39ad04c172c5e3a99c434ea3b4a7ba7960b38ecd562b270b097cce09" +checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4" dependencies = [ "base64", + "js-sys", "pem", "ring 0.17.5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 3e1f73fa..5996b92a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ trust-dns-resolver = "0.23.2" # Used to find matching events for appservices regex = "1.10.2" # jwt jsonwebtokens -jsonwebtoken = "9.1.0" +jsonwebtoken = "9.2.0" # Performance measurements tracing = { version = "0.1.37", features = [] } tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }