2022-04-13 23:20:59 +03:00
|
|
|
[package]
|
|
|
|
name = "command_palette"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2022-04-13 23:20:59 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/command_palette.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-28 23:35:43 +03:00
|
|
|
collections = { path = "../collections" }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 21:42:49 +03:00
|
|
|
fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
2024-01-03 21:55:34 +03:00
|
|
|
picker = { path = "../picker" }
|
2024-01-03 21:42:49 +03:00
|
|
|
project = { package = "project2", path = "../project2" }
|
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2022-04-13 23:20:59 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-03 21:42:49 +03:00
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 21:42:49 +03:00
|
|
|
zed_actions = { package = "zed_actions2", path = "../zed_actions2" }
|
|
|
|
anyhow.workspace = true
|
|
|
|
serde.workspace = true
|
2022-04-13 23:20:59 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 21:42:49 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
2024-01-03 21:58:57 +03:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 21:42:49 +03:00
|
|
|
language = { package="language2", path = "../language2", features = ["test-support"] }
|
|
|
|
project = { package="project2", path = "../project2", features = ["test-support"] }
|
|
|
|
menu = { package = "menu2", path = "../menu2" }
|
|
|
|
go_to_line = { path = "../go_to_line" }
|
2023-04-25 03:41:55 +03:00
|
|
|
serde_json.workspace = true
|
2024-01-03 22:08:51 +03:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|