2022-09-19 16:01:34 +00:00
|
|
|
[package]
|
2022-09-29 15:24:31 +00:00
|
|
|
name = "call"
|
2022-09-19 16:01:34 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
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-19 16:01:34 +00:00
|
|
|
[lib]
|
2022-09-29 15:24:31 +00:00
|
|
|
path = "src/call.rs"
|
2022-09-19 16:01:34 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"client/test-support",
|
2022-09-23 13:05:32 +00:00
|
|
|
"collections/test-support",
|
2022-09-19 16:01:34 +00:00
|
|
|
"gpui/test-support",
|
2024-12-05 23:06:17 +00:00
|
|
|
"livekit_client/test-support",
|
2024-12-09 16:21:02 +00:00
|
|
|
"livekit_client_macos/test-support",
|
2022-09-19 16:01:34 +00:00
|
|
|
"project/test-support",
|
2022-09-28 17:02:26 +00:00
|
|
|
"util/test-support"
|
2022-09-19 16:01:34 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
audio.workspace = true
|
|
|
|
client.workspace = true
|
|
|
|
collections.workspace = true
|
2024-12-05 23:06:17 +00:00
|
|
|
feature_flags.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
fs.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
log.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
postage.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
project.workspace = true
|
2023-07-19 19:34:24 +00:00
|
|
|
schemars.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
|
|
|
util.workspace = true
|
2024-12-06 21:50:59 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
livekit_client_macos = { workspace = true }
|
|
|
|
|
|
|
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
|
|
|
livekit_client = { workspace = true }
|
2022-09-26 15:15:53 +00:00
|
|
|
|
2022-09-19 16:01:34 +00:00
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
|
|
|
project = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|
2024-07-23 22:01:05 +00:00
|
|
|
http_client = { workspace = true, features = ["test-support"] }
|
2024-12-05 23:06:17 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dev-dependencies]
|
|
|
|
livekit_client_macos = { workspace = true, features = ["test-support"] }
|
|
|
|
|
|
|
|
[target.'cfg(not(target_os = "macos"))'.dev-dependencies]
|
|
|
|
livekit_client = { workspace = true, features = ["test-support"] }
|