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