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]
13client = { path = "../client" }
14collections = { path = "../collections" }
15# HACK: We're only depending on `copilot` here for `CommandPaletteFilter`.  See the attached comment on that type.
16copilot = { path = "../copilot" }
17editor = { path = "../editor" }
18fuzzy = {  path = "../fuzzy" }
19gpui = { path = "../gpui" }
20picker = { path = "../picker" }
21project = { path = "../project" }
22release_channel = { path = "../release_channel" }
23settings = { path = "../settings" }
24theme = { path = "../theme" }
25ui = { path = "../ui" }
26util = { path = "../util" }
27workspace = { path = "../workspace" }
28zed_actions = { path = "../zed_actions" }
29anyhow.workspace = true
30serde.workspace = true
31
32[dev-dependencies]
33gpui = { path = "../gpui", features = ["test-support"] }
34editor = { path = "../editor", features = ["test-support"] }
35language = { path = "../language", features = ["test-support"] }
36project = { path = "../project", features = ["test-support"] }
37menu = { path = "../menu" }
38go_to_line = { path = "../go_to_line" }
39serde_json.workspace = true
40workspace = { path = "../workspace", features = ["test-support"] }
41ctor.workspace = true
42env_logger.workspace = true