Cargo.toml

 1[package]
 2name = "command_palette"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/command_palette.rs"
10doctest = false
11
12[dependencies]
13anyhow.workspace = true
14client = { path = "../client" }
15collections = { path = "../collections" }
16# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`.  See the attached comment on that type.
17copilot = { path = "../copilot" }
18editor = { path = "../editor" }
19fuzzy = {  path = "../fuzzy" }
20gpui = { path = "../gpui" }
21picker = { path = "../picker" }
22project = { path = "../project" }
23release_channel = { path = "../release_channel" }
24serde.workspace = true
25settings = { path = "../settings" }
26theme = { path = "../theme" }
27ui = { path = "../ui" }
28util = { path = "../util" }
29workspace = { path = "../workspace" }
30zed_actions = { path = "../zed_actions" }
31
32[dev-dependencies]
33ctor.workspace = true
34editor = { path = "../editor", features = ["test-support"] }
35env_logger.workspace = true
36go_to_line = { path = "../go_to_line" }
37gpui = { path = "../gpui", features = ["test-support"] }
38language = { path = "../language", features = ["test-support"] }
39menu = { path = "../menu" }
40project = { path = "../project", features = ["test-support"] }
41serde_json.workspace = true
42workspace = { path = "../workspace", features = ["test-support"] }