Cargo.toml

 1[package]
 2name = "search2"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/search.rs"
 9doctest = false
10
11[dependencies]
12bitflags = "1"
13collections = { path = "../collections" }
14editor = { package = "editor2", path = "../editor2" }
15gpui = { package = "gpui2", path = "../gpui2" }
16language = { package = "language2", path = "../language2" }
17menu = { package = "menu2", path = "../menu2" }
18project = { package = "project2", path = "../project2" }
19settings = { package = "settings2", path = "../settings2" }
20theme = { package = "theme2", path = "../theme2" }
21util = { path = "../util" }
22ui = {package = "ui2", path = "../ui2"}
23workspace = { package = "workspace2", path = "../workspace2" }
24#semantic_index = { path = "../semantic_index" }
25anyhow.workspace = true
26futures.workspace = true
27log.workspace = true
28postage.workspace = true
29serde.workspace = true
30serde_derive.workspace = true
31smallvec.workspace = true
32smol.workspace = true
33serde_json.workspace = true
34[dev-dependencies]
35client = { package = "client2", path = "../client2", features = ["test-support"] }
36editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
37gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
38
39workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
40unindent.workspace = true