Cargo.toml

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