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