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