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