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]
|
2024-01-03 22:08:51 +03:00
|
|
|
db = { path = "../db2", package = "db2" }
|
2024-01-03 23:02:14 +03:00
|
|
|
call = { path = "../call" }
|
|
|
|
client = { path = "../client" }
|
2022-01-07 19:38:37 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 22:08:51 +03:00
|
|
|
# context_menu = { path = "../context_menu" }
|
|
|
|
fs = { path = "../fs2", package = "fs2" }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
2024-01-03 22:48:46 +03:00
|
|
|
install_cli = { path = "../install_cli" }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language" }
|
2024-01-03 22:08:51 +03:00
|
|
|
#menu = { path = "../menu" }
|
2023-09-06 18:49:56 +03:00
|
|
|
node_runtime = { path = "../node_runtime" }
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project" }
|
2024-01-03 22:08:51 +03:00
|
|
|
settings = { path = "../settings2", package = "settings2" }
|
|
|
|
terminal = { path = "../terminal2", package = "terminal2" }
|
|
|
|
theme = { path = "../theme2", package = "theme2" }
|
2022-01-17 21:46:47 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 22:08:51 +03:00
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
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-10-04 03:39:24 +03:00
|
|
|
uuid.workspace = true
|
2022-11-11 08:08:20 +03:00
|
|
|
|
2021-10-05 14:45:19 +03:00
|
|
|
[dev-dependencies]
|
2024-01-03 23:02:14 +03:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2024-01-03 22:08:51 +03:00
|
|
|
gpui = { path = "../gpui2", package = "gpui2", features = ["test-support"] }
|
2024-01-03 22:53:24 +03:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2024-01-03 22:08:51 +03:00
|
|
|
settings = { path = "../settings2", package = "settings2", features = ["test-support"] }
|
|
|
|
fs = { path = "../fs2", package = "fs2", features = ["test-support"] }
|
|
|
|
db = { path = "../db2", package = "db2", 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
|