Cargo.toml

 1[package]
 2name = "picker"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/picker.rs"
10doctest = false
11
12[dependencies]
13editor = { path = "../editor" }
14gpui = { path = "../gpui" }
15menu = { path = "../menu" }
16parking_lot.workspace = true
17settings = { path = "../settings" }
18theme = { path = "../theme" }
19ui = { path = "../ui" }
20util = { path = "../util" }
21workspace = { path = "../workspace" }
22
23[dev-dependencies]
24ctor.workspace = true
25editor = { path = "../editor", features = ["test-support"] }
26env_logger.workspace = true
27gpui = { path = "../gpui", features = ["test-support"] }
28serde_json.workspace = true