Cargo.toml

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