Cargo.toml

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