1[package]
2name = "command_palette2"
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 = { package = "editor2", path = "../editor2" }
14fuzzy = { package = "fuzzy2", path = "../fuzzy2" }
15gpui = { package = "gpui2", path = "../gpui2" }
16picker = { package = "picker2", path = "../picker2" }
17project = { package = "project2", path = "../project2" }
18settings = { package = "settings2", path = "../settings2" }
19ui = { package = "ui2", path = "../ui2" }
20util = { path = "../util" }
21theme = { package = "theme2", path = "../theme2" }
22workspace = { package="workspace2", path = "../workspace2" }
23zed_actions = { package = "zed_actions2", path = "../zed_actions2" }
24anyhow.workspace = true
25serde.workspace = true
26[dev-dependencies]
27gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
28editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
29language = { package="language2", path = "../language2", features = ["test-support"] }
30project = { package="project2", path = "../project2", features = ["test-support"] }
31serde_json.workspace = true
32workspace = { package="workspace2", path = "../workspace2", features = ["test-support"] }
33ctor.workspace = true
34env_logger.workspace = true