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