mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
33 lines
870 B
TOML
33 lines
870 B
TOML
[package]
|
|
name = "project_symbols"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/project_symbols.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
fuzzy = { path = "../fuzzy" }
|
|
gpui = { path = "../gpui" }
|
|
picker = { path = "../picker" }
|
|
project = { path = "../project" }
|
|
text = { path = "../text" }
|
|
settings = { path = "../settings" }
|
|
workspace = { path = "../workspace" }
|
|
util = { path = "../util" }
|
|
anyhow = "1.0.38"
|
|
ordered-float = "2.1.1"
|
|
postage = { workspace = true }
|
|
smol = "1.2"
|
|
|
|
[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"] }
|
|
project = { path = "../project", features = ["test-support"] }
|