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