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