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