mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-28 01:05:01 +03:00
1e1fb21c81
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.
33 lines
586 B
TOML
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"]
|