Cargo.toml

 1[package]
 2name = "command_palette"
 3version = "0.1.0"
 4edition = "2021"
 5
 6[lib]
 7path = "src/command_palette.rs"
 8doctest = false
 9
10[dependencies]
11editor = { path = "../editor" }
12fuzzy = { path = "../fuzzy" }
13gpui = { path = "../gpui" }
14picker = { path = "../picker" }
15settings = { path = "../settings" }
16util = { path = "../util" }
17theme = { path = "../theme" }
18workspace = { path = "../workspace" }
19
20[dev-dependencies]
21gpui = { path = "../gpui", features = ["test-support"] }
22editor = { path = "../editor", features = ["test-support"] }
23serde_json = { version = "1.0.64", features = ["preserve_order"] }
24workspace = { path = "../workspace", features = ["test-support"] }
25ctor = "0.1"
26env_logger = "0.8"