Cargo.toml

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