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" }
19text = { path = "../text" }
20util = { path = "../util" }
21theme = { path = "../theme" }
22workspace = { path = "../workspace" }
23postage.workspace = true
24
25[dev-dependencies]
26editor = { path = "../editor", features = ["test-support"] }
27gpui = { path = "../gpui", features = ["test-support"] }
28language = { path = "../language", features = ["test-support"] }
29workspace = { path = "../workspace", features = ["test-support"] }
30theme = { path = "../theme", features = ["test-support"] }
31
32serde_json.workspace = true
33ctor.workspace = true
34env_logger.workspace = true