Cargo.toml

 1[package]
 2name = "project"
 3version = "0.1.0"
 4edition = "2018"
 5
 6[features]
 7test-support = ["language/test-support", "buffer/test-support"]
 8
 9[dependencies]
10buffer = { path = "../buffer" }
11client = { path = "../client" }
12clock = { path = "../clock" }
13fsevent = { path = "../fsevent" }
14fuzzy = { path = "../fuzzy" }
15gpui = { path = "../gpui" }
16language = { path = "../language" }
17lsp = { path = "../lsp" }
18rpc = { path = "../rpc" }
19sum_tree = { path = "../sum_tree" }
20util = { path = "../util" }
21anyhow = "1.0.38"
22async-trait = "0.1"
23futures = "0.3"
24ignore = "0.4"
25lazy_static = "1.4.0"
26libc = "0.2"
27log = "0.4"
28parking_lot = "0.11.1"
29postage = { version = "0.4.1", features = ["futures-traits"] }
30serde = { version = "1", features = ["derive"] }
31serde_json = { version = "1.0.64", features = ["preserve_order"] }
32smol = "1.2.5"
33toml = "0.5"
34
35[dev-dependencies]
36client = { path = "../client", features = ["test-support"] }
37gpui = { path = "../gpui", features = ["test-support"] }
38language = { path = "../language", features = ["test-support"] }
39lsp = { path = "../lsp", features = ["test-support"] }
40util = { path = "../util", features = ["test-support"] }
41rpc = { path = "../rpc", features = ["test-support"] }
42rand = "0.8.3"
43simplelog = "0.9"
44tempdir = { version = "0.3.7" }
45unindent = "0.1.7"