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" }
20theme = { path = "../theme" }
21util = { path = "../util" }
22
23anyhow.workspace = true
24ordered-float.workspace = true
25postage.workspace = true
26smol.workspace = true
27serde_json.workspace = true
28
29[dev-dependencies]
30futures.workspace = true
31editor = { path = "../editor", features = ["test-support"] }
32settings = { path = "../settings", features = ["test-support"] }
33gpui = { path = "../gpui", features = ["test-support"] }
34language = { path = "../language", features = ["test-support"] }
35lsp = { path = "../lsp", features = ["test-support"] }
36project = { path = "../project", features = ["test-support"] }
37theme = { path = "../theme", features = ["test-support"] }
38workspace = { path = "../workspace", features = ["test-support"] }