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" }
35theme = { path = "../theme" }
36util = { path = "../util" }
37async-recursion = "1.0.0"
38bincode = "1.2.1"
39anyhow = "1.0.38"
40futures = "0.3"
41lazy_static = "1.4"
42env_logger = "0.9.1"
43log = { version = "0.4.16", features = ["kv_unstable_serde"] }
44parking_lot = "0.11.1"
45postage = { version = "0.4.1", features = ["futures-traits"] }
46serde = { version = "1.0", features = ["derive", "rc"] }
47serde_json = { version = "1.0", features = ["preserve_order"] }
48smallvec = { version = "1.6", features = ["union"] }
49indoc = "1.0.4"
50uuid = { version = "1.1.2", features = ["v4"] }
51
52[dev-dependencies]
53call = { path = "../call", features = ["test-support"] }
54client = { path = "../client", features = ["test-support"] }
55gpui = { path = "../gpui", features = ["test-support"] }
56project = { path = "../project", features = ["test-support"] }
57settings = { path = "../settings", features = ["test-support"] }
58fs = { path = "../fs", features = ["test-support"] }
59db = { path = "../db", features = ["test-support"] }