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" }
19util = { path = "../util" }
20theme = { path = "../theme" }
21workspace = { path = "../workspace" }
22
23[dev-dependencies]
24gpui = { path = "../gpui", features = ["test-support"] }
25editor = { path = "../editor", features = ["test-support"] }
26language = { path = "../language", features = ["test-support"] }
27project = { path = "../project", features = ["test-support"] }
28serde_json.workspace = true
29workspace = { path = "../workspace", features = ["test-support"] }
30ctor.workspace = true
31env_logger.workspace = true