Cargo.toml

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