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 = { version = "0.4.1", features = ["futures-traits"] }
47serde = { version = "1.0", features = ["derive", "rc"] }
48serde_json = { version = "1.0", features = ["preserve_order"] }
49smallvec = { version = "1.6", features = ["union"] }
50indoc = "1.0.4"
51uuid = { version = "1.1.2", features = ["v4"] }
52
53[dev-dependencies]
54call = { path = "../call", features = ["test-support"] }
55client = { path = "../client", features = ["test-support"] }
56gpui = { path = "../gpui", features = ["test-support"] }
57project = { path = "../project", features = ["test-support"] }
58settings = { path = "../settings", features = ["test-support"] }
59fs = { path = "../fs", features = ["test-support"] }
60db = { path = "../db", features = ["test-support"] }