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