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" }
|
2022-02-22 09:54:25 +00:00
|
|
|
util = { path = "../util" }
|
2022-02-22 15:26:01 +00:00
|
|
|
anyhow = "1.0.38"
|
2022-02-22 09:54:25 +00:00
|
|
|
ordered-float = "2.1.1"
|
2023-03-21 00:17:09 +00:00
|
|
|
postage = { workspace = true }
|
2022-02-22 09:54:25 +00:00
|
|
|
smol = "1.2"
|
2022-04-20 22:07:05 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
futures = "0.3"
|
|
|
|
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"] }
|