diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 808f7ba..40e68dd 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -940,10 +940,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", - "js-sys", "libc", "wasi", - "wasm-bindgen", ] [[package]] @@ -1408,16 +1406,17 @@ dependencies = [ [[package]] name = "jsonwebtoken" -version = "9.3.1" +version = "10.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde" +checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1" dependencies = [ "base64", + "getrandom 0.2.17", "js-sys", "pem", - "ring", "serde", "serde_json", + "signature", "simple_asn1", ] diff --git a/backend/Cargo.toml b/backend/Cargo.toml index a2363c6..f675959 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -13,7 +13,7 @@ sqlx = { version = "0.8.6", features = [ common = { path = "../common", features = ["server-side"] } axum = { version = "0.8.4", features = ["macros"] } axum-extra = { version = "0.10.1", features = ["cookie", "attachment"] } -jsonwebtoken = "9.3.1" +jsonwebtoken = "10.3.0" time = "0.3.36" color-eyre = "0.6.5" tracing = "0.1.41"