1[package]
2name = "project_symbols"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-only"
7
8
9[lib]
10path = "src/project_symbols.rs"
11doctest = false
12
13[dependencies]
14editor = { path = "../editor" }
15fuzzy = { path = "../fuzzy" }
16gpui = { path = "../gpui" }
17picker = { path = "../picker" }
18project = { path = "../project" }
19text = { path = "../text" }
20settings = { path = "../settings" }
21workspace = { path = "../workspace" }
22theme = { path = "../theme" }
23util = { path = "../util" }
24
25anyhow.workspace = true
26ordered-float.workspace = true
27postage.workspace = true
28smol.workspace = true
29serde_json.workspace = true
30
31[dev-dependencies]
32futures.workspace = true
33editor = { path = "../editor", features = ["test-support"] }
34settings = { path = "../settings", features = ["test-support"] }
35gpui = { path = "../gpui", features = ["test-support"] }
36language = { path = "../language", features = ["test-support"] }
37lsp = { path = "../lsp", features = ["test-support"] }
38project = { path = "../project", features = ["test-support"] }
39theme = { path = "../theme", features = ["test-support"] }
40workspace = { path = "../workspace", features = ["test-support"] }