Cargo.toml

 1[package]
 2name = "project_symbols"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/project_symbols.rs"
 8doctest = false
 9
10[dependencies]
11editor = { path = "../editor" }
12fuzzy = { path = "../fuzzy" }
13gpui = { path = "../gpui" }
14picker = { path = "../picker" }
15project = { path = "../project" }
16text = { path = "../text" }
17settings = { path = "../settings" }
18workspace = { path = "../workspace" }
19util = { path = "../util" }
20anyhow = "1.0.38"
21ordered-float = "2.1.1"
22postage = { version = "0.4", features = ["futures-traits"] }
23smol = "1.2"
24
25[dev-dependencies]
26futures = "0.3"
27settings = { path = "../settings", features = ["test-support"] }
28gpui = { path = "../gpui", features = ["test-support"] }
29language = { path = "../language", features = ["test-support"] }
30lsp = { path = "../lsp", features = ["test-support"] }
31project = { path = "../project", features = ["test-support"] }