Cargo.toml

 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
19parking_lot = "0.11.1"
20
21[dev-dependencies]
22gpui = { path = "../gpui", features = ["test-support"] }
23serde_json = { version = "1.0", features = ["preserve_order"] }
24workspace = { path = "../workspace", features = ["test-support"] }
25ctor = "0.1"
26env_logger = "0.9"