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
27
28[dev-dependencies]
29futures.workspace = true
30editor = { path = "../editor", features = ["test-support"] }
31settings = { path = "../settings", features = ["test-support"] }
32gpui = { path = "../gpui", features = ["test-support"] }
33language = { path = "../language", features = ["test-support"] }
34lsp = { path = "../lsp", features = ["test-support"] }
35project = { path = "../project", features = ["test-support"] }
36theme = { path = "../theme", features = ["test-support"] }
37workspace = { path = "../workspace", features = ["test-support"] }