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"
|
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" }
|
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" }
|
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" }
|
2021-10-05 11:45:19 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-01-17 18:46:47 +00:00
|
|
|
util = { path = "../util" }
|
2022-11-18 22:20:52 +00:00
|
|
|
async-recursion = "1.0.0"
|
2022-11-11 05:08:20 +00:00
|
|
|
bincode = "1.2.1"
|
2021-10-05 11:45:19 +00:00
|
|
|
anyhow = "1.0.38"
|
2022-02-21 16:25:52 +00:00
|
|
|
futures = "0.3"
|
2022-11-14 21:18:44 +00:00
|
|
|
lazy_static = "1.4"
|
2022-11-17 00:35:56 +00:00
|
|
|
env_logger = "0.9.1"
|
2022-04-08 16:06:51 +00:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-12-18 15:12:59 +00:00
|
|
|
parking_lot = "0.11.1"
|
2021-10-05 11:45:19 +00:00
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
2022-05-31 09:16:32 +00:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2022-05-26 07:34:39 +00:00
|
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
2022-03-11 08:59:13 +00:00
|
|
|
smallvec = { version = "1.6", features = ["union"] }
|
2022-11-11 05:08:20 +00:00
|
|
|
indoc = "1.0.4"
|
|
|
|
|
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"] }
|
2022-12-02 20:43:02 +00:00
|
|
|
db = { path = "../db", features = ["test-support"] }
|