2022-09-02 18:56:38 +00:00
|
|
|
[package]
|
2024-12-05 23:06:17 +00:00
|
|
|
name = "livekit_client"
|
2022-09-02 18:56:38 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-12-05 23:06:17 +00:00
|
|
|
description = "Logic for using LiveKit with GPUI"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-09-02 18:56:38 +00:00
|
|
|
[lib]
|
2024-12-05 23:06:17 +00:00
|
|
|
path = "src/livekit_client.rs"
|
2022-09-02 18:56:38 +00:00
|
|
|
doctest = false
|
|
|
|
|
2022-10-18 05:24:48 +00:00
|
|
|
[[example]]
|
|
|
|
name = "test_app"
|
|
|
|
|
2022-10-19 11:53:40 +00:00
|
|
|
[features]
|
2024-06-15 00:13:31 +00:00
|
|
|
no-webrtc = []
|
2022-10-19 14:35:34 +00:00
|
|
|
test-support = [
|
|
|
|
"collections/test-support",
|
|
|
|
"gpui/test-support",
|
2024-02-07 20:04:29 +00:00
|
|
|
"nanoid",
|
2022-10-19 14:35:34 +00:00
|
|
|
]
|
2022-10-19 11:53:40 +00:00
|
|
|
|
2022-09-02 18:56:38 +00:00
|
|
|
[dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
2024-12-05 23:06:17 +00:00
|
|
|
async-trait.workspace = true
|
|
|
|
collections.workspace = true
|
|
|
|
cpal = "0.15"
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
2024-12-05 23:06:17 +00:00
|
|
|
gpui.workspace = true
|
|
|
|
http_2 = { package = "http", version = "0.2.1" }
|
|
|
|
livekit_server.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
log.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
media.workspace = true
|
2024-04-26 02:37:40 +00:00
|
|
|
nanoid = { workspace = true, optional = true}
|
2023-04-25 00:41:55 +00:00
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2024-12-05 23:06:17 +00:00
|
|
|
util.workspace = true
|
|
|
|
http_client.workspace = true
|
|
|
|
smallvec.workspace = true
|
|
|
|
image.workspace = true
|
|
|
|
|
|
|
|
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
|
|
|
livekit.workspace = true
|
2022-09-02 18:56:38 +00:00
|
|
|
|
2024-01-27 12:38:55 +00:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2024-02-24 02:18:06 +00:00
|
|
|
core-foundation.workspace = true
|
2024-12-05 23:06:17 +00:00
|
|
|
coreaudio-rs = "0.12.1"
|
2024-11-18 09:43:53 +00:00
|
|
|
|
2022-10-18 05:24:48 +00:00
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
2024-04-26 02:37:40 +00:00
|
|
|
nanoid.workspace = true
|
2024-02-26 09:08:57 +00:00
|
|
|
sha2.workspace = true
|
2024-07-11 22:04:46 +00:00
|
|
|
simplelog.workspace = true
|
2022-10-18 05:24:48 +00:00
|
|
|
|
2022-09-02 18:56:38 +00:00
|
|
|
[build-dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2024-02-26 09:08:57 +00:00
|
|
|
|
|
|
|
[package.metadata.cargo-machete]
|
|
|
|
ignored = ["serde_json"]
|