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