Cargo.toml

 1[package]
 2name = "file_finder"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/file_finder.rs"
 8doctest = false
 9
10[dependencies]
11editor = { path = "../editor" }
12fuzzy = { path = "../fuzzy" }
13gpui = { path = "../gpui" }
14project = { path = "../project" }
15util = { path = "../util" }
16theme = { path = "../theme" }
17workspace = { path = "../workspace" }
18postage = { version = "0.4.1", features = ["futures-traits"] }
19
20[dev-dependencies]
21gpui = { path = "../gpui", features = ["test-support"] }
22serde_json = { version = "1.0.64", features = ["preserve_order"] }
23workspace = { path = "../workspace", features = ["test-support"] }