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