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
|
2024-01-23 15:56:22 +00:00
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
license-file = "../../LICENSE-AGPL"
|
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]
|
2024-01-03 20:09:08 +00:00
|
|
|
db = { path = "../db" }
|
2024-01-03 20:02:14 +00:00
|
|
|
call = { path = "../call" }
|
|
|
|
client = { path = "../client" }
|
2022-01-07 16:38:37 +00:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 19:08:51 +00:00
|
|
|
# context_menu = { path = "../context_menu" }
|
2024-01-03 20:09:08 +00:00
|
|
|
fs = { path = "../fs" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 19:48:46 +00:00
|
|
|
install_cli = { path = "../install_cli" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2024-01-03 19:08:51 +00:00
|
|
|
#menu = { path = "../menu" }
|
2023-09-06 15:49:56 +00:00
|
|
|
node_runtime = { path = "../node_runtime" }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-05 18:36:55 +00:00
|
|
|
sqlez = { path = "../sqlez" }
|
2024-01-03 20:28:45 +00:00
|
|
|
terminal = { path = "../terminal" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-01-17 18:46:47 +00:00
|
|
|
util = { path = "../util" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = { path = "../ui" }
|
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-10-04 00:39:24 +00:00
|
|
|
uuid.workspace = true
|
2022-11-11 05:08:20 +00:00
|
|
|
|
2021-10-05 11:45:19 +00:00
|
|
|
[dev-dependencies]
|
2024-01-03 20:02:14 +00:00
|
|
|
call = { path = "../call", features = ["test-support"] }
|
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2024-01-03 19:53:24 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2024-01-03 20:09:08 +00:00
|
|
|
fs = { path = "../fs", features = ["test-support"] }
|
|
|
|
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
|