1[package]
2name = "workspace"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/workspace.rs"
9doctest = false
10
11[features]
12test-support = [
13 "call/test-support",
14 "client/test-support",
15 "project/test-support",
16 "settings/test-support",
17 "gpui/test-support",
18 "fs/test-support"
19]
20
21[dependencies]
22db = { path = "../db" }
23call = { path = "../call" }
24client = { path = "../client" }
25collections = { path = "../collections" }
26context_menu = { path = "../context_menu" }
27drag_and_drop = { path = "../drag_and_drop" }
28fs = { path = "../fs" }
29gpui = { path = "../gpui" }
30install_cli = { path = "../install_cli" }
31language = { path = "../language" }
32menu = { path = "../menu" }
33project = { path = "../project" }
34settings = { path = "../settings" }
35terminal = { path = "../terminal" }
36theme = { path = "../theme" }
37util = { path = "../util" }
38async-recursion = "1.0.0"
39bincode = "1.2.1"
40anyhow = "1.0.38"
41futures = "0.3"
42lazy_static = "1.4"
43env_logger = "0.9.1"
44log = { version = "0.4.16", features = ["kv_unstable_serde"] }
45parking_lot = "0.11.1"
46postage = { workspace = true }
47serde = { workspace = true }
48serde_derive = { workspace = true }
49serde_json = { workspace = true }
50smallvec = { workspace = true }
51indoc = "1.0.4"
52uuid = { version = "1.1.2", features = ["v4"] }
53
54[dev-dependencies]
55call = { path = "../call", features = ["test-support"] }
56client = { path = "../client", features = ["test-support"] }
57gpui = { path = "../gpui", features = ["test-support"] }
58project = { path = "../project", features = ["test-support"] }
59settings = { path = "../settings", features = ["test-support"] }
60fs = { path = "../fs", features = ["test-support"] }
61db = { path = "../db", features = ["test-support"] }