Cargo.toml

 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" }
15menu = { path = "../menu" }
16project = { path = "../project" }
17settings = { path = "../settings" }
18theme = { path = "../theme" }
19util = { path = "../util" }
20workspace = { path = "../workspace" }
21anyhow = "1.0"
22log = { version = "0.4.16", features = ["kv_unstable_serde"] }
23postage = { version = "0.4.1", features = ["futures-traits"] }
24serde = { version = "1.0", features = ["derive", "rc"] }
25smallvec = { version = "1.6", features = ["union"] }
26
27[dev-dependencies]
28editor = { path = "../editor", features = ["test-support"] }
29gpui = { path = "../gpui", features = ["test-support"] }
30serde_json = { version = "1.0", features = ["preserve_order"] }
31workspace = { path = "../workspace", features = ["test-support"] }
32unindent = "0.1"