Cargo.toml

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