1[package]
2name = "workspace"
3version = "0.1.0"
4edition = "2018"
5
6[features]
7test-support = [
8 "client/test-support",
9 "project/test-support",
10 "tree-sitter",
11 "tree-sitter-rust",
12]
13
14[dependencies]
15client = { path = "../client" }
16gpui = { path = "../gpui" }
17language = { path = "../language" }
18project = { path = "../project" }
19theme = { path = "../theme" }
20anyhow = "1.0.38"
21log = "0.4"
22postage = { version = "0.4.1", features = ["futures-traits"] }
23tree-sitter = { version = "0.19.5", optional = true }
24tree-sitter-rust = { version = "0.19.0", optional = true }
25
26[dev-dependencies]
27client = { path = "../client", features = ["test-support"] }
28gpui = { path = "../gpui", features = ["test-support"] }
29project = { path = "../project", features = ["test-support"] }
30serde_json = { version = "1.0.64", features = ["preserve_order"] }
31tree-sitter = "0.19.5"
32tree-sitter-rust = "0.19.0"