1[package]
2name = "command_palette"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/command_palette.rs"
9doctest = false
10
11[dependencies]
12collections = { path = "../collections" }
13editor = { path = "../editor" }
14fuzzy = { path = "../fuzzy" }
15gpui = { path = "../gpui" }
16picker = { path = "../picker" }
17project = { path = "../project" }
18settings = { path = "../settings" }
19ui = { path = "../ui" }
20util = { path = "../util" }
21theme = { path = "../theme" }
22workspace = { path = "../workspace" }
23zed_actions = { path = "../zed_actions" }
24anyhow.workspace = true
25serde.workspace = true
26
27[dev-dependencies]
28gpui = { path = "../gpui", features = ["test-support"] }
29editor = { path = "../editor", features = ["test-support"] }
30language = { path = "../language", features = ["test-support"] }
31project = { path = "../project", features = ["test-support"] }
32menu = { path = "../menu" }
33go_to_line = { path = "../go_to_line" }
34serde_json.workspace = true
35workspace = { path = "../workspace", features = ["test-support"] }
36ctor.workspace = true
37env_logger.workspace = true