mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
70db427fc8
I’ve also updated the documentation in `development\local-collaboration.md` and `docs\src\development\windows.md`. Testing collab on my Windows machine: ![屏幕截图 2025-01-14 162021](https://github.com/user-attachments/assets/28b4a36a-e156-4012-981a-5d0a23dcc613) Release Notes: - N/A --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
name = "livekit_client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Logic for using LiveKit with GPUI"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/livekit_client.rs"
|
|
doctest = false
|
|
|
|
[[example]]
|
|
name = "test_app"
|
|
|
|
[features]
|
|
no-webrtc = []
|
|
test-support = ["collections/test-support", "gpui/test-support", "nanoid"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
collections.workspace = true
|
|
cpal = "0.15"
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
http_2 = { package = "http", version = "0.2.1" }
|
|
livekit.workspace = true
|
|
livekit_server.workspace = true
|
|
log.workspace = true
|
|
media.workspace = true
|
|
nanoid = { workspace = true, optional = true }
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
util.workspace = true
|
|
http_client.workspace = true
|
|
smallvec.workspace = true
|
|
image.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation.workspace = true
|
|
coreaudio-rs = "0.12.1"
|
|
|
|
[dev-dependencies]
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
nanoid.workspace = true
|
|
sha2.workspace = true
|
|
simplelog.workspace = true
|
|
|
|
[build-dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["serde_json"]
|