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