Cargo.toml

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