mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
789ce8dd75
Co-authored-by: Mikayla <mikayla@zed.dev>
38 lines
1.3 KiB
TOML
38 lines
1.3 KiB
TOML
[package]
|
|
name = "command_palette"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/command_palette.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
editor = { path = "../editor" }
|
|
fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
picker = { path = "../picker" }
|
|
project = { package = "project2", path = "../project2" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
ui = { package = "ui2", path = "../ui2" }
|
|
util = { path = "../util" }
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
workspace = { path = "../workspace" }
|
|
zed_actions = { package = "zed_actions2", path = "../zed_actions2" }
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
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" }
|
|
serde_json.workspace = true
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|