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]
11collections = { path = "../collections" }
12editor = { path = "../editor" }
13fuzzy = { path = "../fuzzy" }
14gpui = { path = "../gpui" }
15picker = { path = "../picker" }
16project = { path = "../project" }
17settings = { path = "../settings" }
18util = { path = "../util" }
19theme = { path = "../theme" }
20workspace = { path = "../workspace" }
21
22[dev-dependencies]
23gpui = { path = "../gpui", features = ["test-support"] }
24editor = { path = "../editor", features = ["test-support"] }
25project = { path = "../project", features = ["test-support"] }
26serde_json = { version = "1.0", features = ["preserve_order"] }
27workspace = { path = "../workspace", features = ["test-support"] }
28ctor = "0.1"
29env_logger = "0.9"