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]
12client = { path = "../client" }
13collections = { path = "../collections" }
14editor = { path = "../editor" }
15fuzzy = { path = "../fuzzy" }
16gpui = { path = "../gpui" }
17picker = { path = "../picker" }
18project = { path = "../project" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21ui = { path = "../ui" }
22util = { path = "../util" }
23workspace = { path = "../workspace" }
24zed_actions = { path = "../zed_actions" }
25anyhow.workspace = true
26serde.workspace = true
27
28[dev-dependencies]
29gpui = { path = "../gpui", features = ["test-support"] }
30editor = { path = "../editor", features = ["test-support"] }
31language = { path = "../language", features = ["test-support"] }
32project = { path = "../project", features = ["test-support"] }
33menu = { path = "../menu" }
34go_to_line = { path = "../go_to_line" }
35serde_json.workspace = true
36workspace = { path = "../workspace", features = ["test-support"] }
37ctor.workspace = true
38env_logger.workspace = true