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" }
14picker = { path = "../picker" }
15project = { path = "../project" }
16settings = { path = "../settings" }
17util = { path = "../util" }
18theme = { path = "../theme" }
19workspace = { path = "../workspace" }
20postage = { version = "0.4.1", features = ["futures-traits"] }
21
22[dev-dependencies]
23gpui = { path = "../gpui", features = ["test-support"] }
24serde_json = { version = "1.0.64", features = ["preserve_order"] }
25workspace = { path = "../workspace", features = ["test-support"] }
26ctor = "0.1"
27env_logger = "0.8"