zed/crates/live_kit_server/Cargo.toml
Marshall Bowers e338f34097
Sort dependencies in Cargo.toml files (#7126)
This PR sorts the dependency lists in our `Cargo.toml` files so that
they are in alphabetical order.

This should make them easier to visually scan when looking for a
dependency.

Apologies in advance for any merge conflicts 🙈 

Release Notes:

- N/A
2024-01-30 21:41:29 -05:00

29 lines
520 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"
[lib]
path = "src/live_kit_server.rs"
doctest = false
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
futures.workspace = true
hmac = "0.12"
jwt = "0.16"
log.workspace = true
prost = "0.8"
prost-types = "0.8"
reqwest = "0.11"
serde.workspace = true
serde_derive.workspace = true
sha2 = "0.10"
[build-dependencies]
prost-build = "0.9"