mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
e338f34097
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
73 lines
1.8 KiB
TOML
73 lines
1.8 KiB
TOML
[package]
|
|
name = "live_kit_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Bindings to LiveKit Swift client SDK"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/live_kit_client.rs"
|
|
doctest = false
|
|
|
|
[[example]]
|
|
name = "test_app"
|
|
|
|
[features]
|
|
test-support = [
|
|
"async-trait",
|
|
"collections/test-support",
|
|
"gpui/test-support",
|
|
"live_kit_server",
|
|
"nanoid",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-broadcast = "0.4"
|
|
async-trait = { workspace = true, optional = true }
|
|
collections = { path = "../collections", optional = true }
|
|
futures.workspace = true
|
|
gpui = { path = "../gpui", optional = true }
|
|
live_kit_server = { path = "../live_kit_server", optional = true }
|
|
log.workspace = true
|
|
media = { path = "../media" }
|
|
nanoid = { version ="0.4", optional = true}
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = "0.9.3"
|
|
|
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
|
async-trait = { workspace = true }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
live_kit_server = { path = "../live_kit_server" }
|
|
|
|
[dev-dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
block = "0.1"
|
|
byteorder = "1.4"
|
|
bytes = "1.2"
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
foreign-types = "0.3"
|
|
futures.workspace = true
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
hmac = "0.12"
|
|
jwt = "0.16"
|
|
live_kit_server = { path = "../live_kit_server" }
|
|
media = { path = "../media" }
|
|
nanoid = "0.4"
|
|
parking_lot.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
sha2 = "0.10"
|
|
simplelog = "0.9"
|
|
|
|
[build-dependencies]
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|