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