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" }
13collections = { path = "../collections" }
14fuzzy = { path = "../fuzzy" }
15gpui = { path = "../gpui" }
16menu = { path = "../menu" }
17picker = { path = "../picker" }
18project = { path = "../project" }
19settings = { path = "../settings" }
20text = { path = "../text" }
21util = { path = "../util" }
22theme = { path = "../theme" }
23ui = { path = "../ui" }
24workspace = { path = "../workspace" }
25postage.workspace = true
26serde.workspace = true
27
28[dev-dependencies]
29editor = { path = "../editor", features = ["test-support"] }
30gpui = { path = "../gpui", features = ["test-support"] }
31language = { path = "../language", features = ["test-support"] }
32workspace = { path = "../workspace", features = ["test-support"] }
33theme = { path = "../theme", features = ["test-support"] }
34
35serde_json.workspace = true
36ctor.workspace = true
37env_logger.workspace = true