Cargo.toml

 1[package]
 2name = "file_finder"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/file_finder.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14collections = { path = "../collections" }
15editor = { path = "../editor" }
16fuzzy = {  path = "../fuzzy" }
17gpui = { path = "../gpui" }
18menu = { path = "../menu" }
19picker = { path = "../picker" }
20postage.workspace = true
21project = { path = "../project" }
22serde.workspace = true
23settings = { path = "../settings" }
24text = { path = "../text" }
25theme = { path = "../theme" }
26ui = { path = "../ui" }
27util = { path = "../util" }
28workspace = { path = "../workspace" }
29
30[dev-dependencies]
31ctor.workspace = true
32editor = { path = "../editor", features = ["test-support"] }
33env_logger.workspace = true
34gpui = { path = "../gpui", features = ["test-support"] }
35language = { path = "../language", features = ["test-support"] }
36serde_json.workspace = true
37theme = { path = "../theme", features = ["test-support"] }
38workspace = { path = "../workspace", features = ["test-support"] }