2021-10-05 08:37:40 +00:00
|
|
|
[package]
|
|
|
|
name = "workspace"
|
|
|
|
version = "0.1.0"
|
2022-01-17 15:59:06 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2021-10-05 11:45:19 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/workspace.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-05 11:45:19 +00:00
|
|
|
[features]
|
2022-10-05 12:27:59 +00:00
|
|
|
test-support = [
|
|
|
|
"call/test-support",
|
|
|
|
"client/test-support",
|
|
|
|
"project/test-support",
|
2022-10-12 03:25:39 +00:00
|
|
|
"settings/test-support",
|
|
|
|
"gpui/test-support",
|
|
|
|
"fs/test-support"
|
2022-10-05 12:27:59 +00:00
|
|
|
]
|
2021-10-05 11:45:19 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-10-20 22:07:58 +00:00
|
|
|
db = { path = "../db" }
|
2022-10-05 12:27:59 +00:00
|
|
|
call = { path = "../call" }
|
2021-10-05 11:45:19 +00:00
|
|
|
client = { path = "../client" }
|
2023-08-21 23:30:57 +00:00
|
|
|
channel = { path = "../channel" }
|
2022-01-07 16:38:37 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-07-13 10:15:36 +00:00
|
|
|
context_menu = { path = "../context_menu" }
|
2022-07-26 17:04:16 +00:00
|
|
|
drag_and_drop = { path = "../drag_and_drop" }
|
2022-10-11 22:25:54 +00:00
|
|
|
fs = { path = "../fs" }
|
2021-10-05 11:45:19 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2023-03-07 01:55:58 +00:00
|
|
|
install_cli = { path = "../install_cli" }
|
2021-10-20 20:51:40 +00:00
|
|
|
language = { path = "../language" }
|
2022-06-16 18:30:02 +00:00
|
|
|
menu = { path = "../menu" }
|
2021-10-05 11:45:19 +00:00
|
|
|
project = { path = "../project" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2023-03-08 17:47:57 +00:00
|
|
|
terminal = { path = "../terminal" }
|
2021-10-05 11:45:19 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-01-17 18:46:47 +00:00
|
|
|
util = { path = "../util" }
|
2023-04-25 00:41:55 +00:00
|
|
|
|
2022-11-18 22:20:52 +00:00
|
|
|
async-recursion = "1.0.0"
|
2023-05-17 14:35:06 +00:00
|
|
|
itertools = "0.10"
|
2022-11-11 05:08:20 +00:00
|
|
|
bincode = "1.2.1"
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
2023-05-17 03:25:18 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
smallvec.workspace = true
|
2023-01-25 19:30:03 +00:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
2022-11-11 05:08:20 +00:00
|
|
|
|
2021-10-05 11:45:19 +00:00
|
|
|
[dev-dependencies]
|
2022-10-05 12:27:59 +00:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
2021-10-05 11:45:19 +00:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2021-11-24 15:04:24 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2021-10-05 11:45:19 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2022-10-12 03:25:39 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2022-11-15 22:45:04 +00:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
2023-03-17 14:39:24 +00:00
|
|
|
db = { path = "../db", features = ["test-support"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
|
2023-05-23 05:11:22 +00:00
|
|
|
indoc.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
env_logger.workspace = true
|