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" }
16settings = { path = "../settings" }
17theme = { path = "../theme" }
18util = { path = "../util" }
19workspace = { path = "../workspace" }
20anyhow = "1.0"
21log = "0.4"
22postage = { version = "0.4.1", features = ["futures-traits"] }
23
24[dev-dependencies]
25editor = { path = "../editor", features = ["test-support"] }
26gpui = { path = "../gpui", features = ["test-support"] }
27serde_json = { version = "1.0.64", features = ["preserve_order"] }
28workspace = { path = "../workspace", features = ["test-support"] }
29unindent = "0.1"