2022-02-22 07:42:12 +00:00
|
|
|
[package]
|
|
|
|
name = "project_symbols"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2022-02-22 07:42:12 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/project_symbols.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2022-02-22 07:42:12 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
fuzzy = { path = "../fuzzy" }
|
|
|
|
gpui = { path = "../gpui" }
|
2022-04-15 00:35:32 +00:00
|
|
|
picker = { path = "../picker" }
|
2022-02-22 07:42:12 +00:00
|
|
|
project = { path = "../project" }
|
|
|
|
text = { path = "../text" }
|
2022-04-06 00:10:17 +00:00
|
|
|
settings = { path = "../settings" }
|
2022-02-22 07:42:12 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2023-05-17 21:44:55 +00:00
|
|
|
theme = { path = "../theme" }
|
2022-02-22 09:54:25 +00:00
|
|
|
util = { path = "../util" }
|
2023-05-17 21:44:55 +00:00
|
|
|
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
ordered-float.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
smol.workspace = true
|
2022-04-20 22:07:05 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2022-04-20 22:07:05 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
language = { path = "../language", features = ["test-support"] }
|
|
|
|
lsp = { path = "../lsp", features = ["test-support"] }
|
2022-11-15 22:45:04 +00:00
|
|
|
project = { path = "../project", features = ["test-support"] }
|
2023-05-17 21:44:55 +00:00
|
|
|
theme = { path = "../theme", features = ["test-support"] }
|
2023-05-11 21:40:35 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|