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