mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
03ebbcbef6
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
31 lines
567 B
TOML
31 lines
567 B
TOML
[package]
|
|
name = "live_kit_server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "SDK for the LiveKit server API"
|
|
publish = false
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/live_kit_server.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
jsonwebtoken.workspace = true
|
|
log.workspace = true
|
|
prost.workspace = true
|
|
prost-types.workspace = true
|
|
reqwest = "0.11"
|
|
serde.workspace = true
|
|
|
|
[build-dependencies]
|
|
prost-build.workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["prost-types"]
|