1[package]
2name = "picker"
3version = "0.1.0"
4edition = "2021"
5
6[lib]
7path = "src/picker.rs"
8doctest = false
9
10[dependencies]
11editor = { path = "../editor" }
12gpui = { path = "../gpui" }
13settings = { path = "../settings" }
14util = { path = "../util" }
15theme = { path = "../theme" }
16workspace = { path = "../workspace" }
17
18[dev-dependencies]
19gpui = { path = "../gpui", features = ["test-support"] }
20serde_json = { version = "1.0.64", features = ["preserve_order"] }
21workspace = { path = "../workspace", features = ["test-support"] }
22ctor = "0.1"
23env_logger = "0.8"