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