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