1[package]
2name = "file_finder"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-only"
7
8
9[lib]
10path = "src/file_finder.rs"
11doctest = false
12
13[dependencies]
14editor = { path = "../editor" }
15collections = { path = "../collections" }
16fuzzy = { path = "../fuzzy" }
17gpui = { path = "../gpui" }
18menu = { path = "../menu" }
19picker = { path = "../picker" }
20project = { path = "../project" }
21settings = { path = "../settings" }
22text = { path = "../text" }
23util = { path = "../util" }
24theme = { path = "../theme" }
25ui = { path = "../ui" }
26workspace = { path = "../workspace" }
27postage.workspace = true
28anyhow.workspace = true
29serde.workspace = true
30
31[dev-dependencies]
32editor = { path = "../editor", features = ["test-support"] }
33gpui = { path = "../gpui", features = ["test-support"] }
34language = { path = "../language", features = ["test-support"] }
35workspace = { path = "../workspace", features = ["test-support"] }
36theme = { path = "../theme", features = ["test-support"] }
37
38serde_json.workspace = true
39ctor.workspace = true
40env_logger.workspace = true