Cargo.toml

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