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" }
13menu = { path = "../menu" }
14settings = { path = "../settings" }
15util = { path = "../util" }
16theme = { path = "../theme" }
17workspace = { path = "../workspace" }
18
19[dev-dependencies]
20gpui = { path = "../gpui", features = ["test-support"] }
21serde_json = { version = "1.0", features = ["preserve_order"] }
22workspace = { path = "../workspace", features = ["test-support"] }
23ctor = "0.1"
24env_logger = "0.9"