Cargo.toml

 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 = "1.0"
23futures = "0.3"
24log = { version = "0.4.16", features = ["kv_unstable_serde"] }
25postage = { version = "0.4.1", features = ["futures-traits"] }
26serde = { version = "1.0", features = ["derive", "rc"] }
27smallvec = { version = "1.6", features = ["union"] }
28smol = "1.2"
29
30[dev-dependencies]
31editor = { path = "../editor", features = ["test-support"] }
32gpui = { path = "../gpui", features = ["test-support"] }
33serde_json = { version = "1.0", features = ["preserve_order"] }
34workspace = { path = "../workspace", features = ["test-support"] }
35unindent = "0.1"