1[package]
2name = "search"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/search.rs"
8doctest = false
9
10[dependencies]
11collections = { path = "../collections" }
12editor = { path = "../editor" }
13gpui = { path = "../gpui" }
14language = { path = "../language" }
15project = { path = "../project" }
16theme = { path = "../theme" }
17util = { path = "../util" }
18workspace = { path = "../workspace" }
19anyhow = "1.0"
20log = "0.4"
21postage = { version = "0.4.1", features = ["futures-traits"] }
22
23[dev-dependencies]
24editor = { path = "../editor", features = ["test-support"] }
25gpui = { path = "../gpui", features = ["test-support"] }
26serde_json = { version = "1.0.64", features = ["preserve_order"] }
27workspace = { path = "../workspace", features = ["test-support"] }
28unindent = "0.1"