Cargo.toml

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