live_kit_server: Replace jwt with jsonwebtoken (#15302)

This PR replaces `live_kit_server`'s usage of `jwt` with `jsonwebtoken`.

`jwt` hasn't been updated in 2 years and seems unmaintained.

`jsonwebtoken` has significantly more downloads and appears to be a
healthier crate overall.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-07-26 17:20:01 -04:00 committed by GitHub
parent 27f97ba762
commit 03ebbcbef6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 47 additions and 23 deletions

View file

@ -16,14 +16,12 @@ doctest = false
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
hmac = "0.12"
jwt = "0.16"
jsonwebtoken.workspace = true
log.workspace = true
prost.workspace = true
prost-types.workspace = true
reqwest = "0.11"
serde.workspace = true
sha2.workspace = true
[build-dependencies]
prost-build.workspace = true