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