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