2022-09-19 19:01:34 +03:00
|
|
|
[package]
|
2022-09-29 18:24:31 +03:00
|
|
|
name = "call"
|
2022-09-19 19:01:34 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2022-09-19 19:01:34 +03:00
|
|
|
[lib]
|
2022-09-29 18:24:31 +03:00
|
|
|
path = "src/call.rs"
|
2022-09-19 19:01:34 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"client/test-support",
|
2022-09-23 16:05:32 +03:00
|
|
|
"collections/test-support",
|
2022-09-19 19:01:34 +03:00
|
|
|
"gpui/test-support",
|
2022-10-19 14:53:40 +03:00
|
|
|
"live_kit_client/test-support",
|
2022-09-19 19:01:34 +03:00
|
|
|
"project/test-support",
|
2022-09-28 20:02:26 +03:00
|
|
|
"util/test-support"
|
2022-09-19 19:01:34 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
audio.workspace = true
|
|
|
|
client.workspace = true
|
|
|
|
collections.workspace = true
|
|
|
|
fs.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
|
|
|
live_kit_client.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
log.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
postage.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
project.workspace = true
|
2023-07-19 22:34:24 +03:00
|
|
|
schemars.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
|
|
|
util.workspace = true
|
2022-09-26 18:15:53 +03:00
|
|
|
|
2022-09-19 19:01:34 +03:00
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03: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"] }
|
|
|
|
live_kit_client = { workspace = true, features = ["test-support"] }
|
|
|
|
project = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|
2024-05-11 00:50:20 +03:00
|
|
|
http = { workspace = true, features = ["test-support"] }
|