zed/crates/live_kit_server/Cargo.toml
Tobias Decking 1e1fb21c81
Merge prost dependecies (#9522)
This patch puts the prost, prost-build, and prost-types dependencies
together and unifies their version. This improves organization a bit in
addition to improving build time slightly, since a redundant version of
prost is now removed.

The dependencies are _not_ updated to the newest versions, because the
newest versions add a dependency on the `protoc` application, which is
not provided by cargo and thus breaks the building process.
2024-03-18 20:33:20 -06:00

33 lines
586 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
hmac = "0.12"
jwt = "0.16"
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
[package.metadata.cargo-machete]
ignored = ["prost-types"]