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" }
14ui = { path = "../ui" }
15gpui = { path = "../gpui" }
16menu = { path = "../menu" }
17settings = { path = "../settings" }
18util = { path = "../util" }
19theme = { path = "../theme" }
20workspace = { path = "../workspace"}
21
22parking_lot.workspace = true
23
24[dev-dependencies]
25editor = { path = "../editor", features = ["test-support"] }
26gpui = { path = "../gpui", features = ["test-support"] }
27serde_json.workspace = true
28ctor.workspace = true
29env_logger.workspace = true