Cargo.toml

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