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]
13anyhow.workspace = true
14bitflags = "1"
15collections = { path = "../collections" }
16editor = { path = "../editor" }
17futures.workspace = true
18gpui = { path = "../gpui" }
19language = { path = "../language" }
20log.workspace = true
21menu = { path = "../menu" }
22postage.workspace = true
23project = { path = "../project" }
24semantic_index = { path = "../semantic_index" }
25serde.workspace = true
26serde_derive.workspace = true
27serde_json.workspace = true
28settings = { path = "../settings" }
29smallvec.workspace = true
30smol.workspace = true
31theme = { path = "../theme" }
32ui = { path = "../ui" }
33util = { path = "../util" }
34workspace = { path = "../workspace" }
35
36[dev-dependencies]
37client = { path = "../client", features = ["test-support"] }
38editor = { path = "../editor", features = ["test-support"] }
39gpui = { path = "../gpui", features = ["test-support"] }
40unindent.workspace = true
41workspace = { path = "../workspace", features = ["test-support"] }