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