2022-04-14 23:21:22 +00:00
|
|
|
[package]
|
|
|
|
name = "picker"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2022-04-14 23:21:22 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/picker.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 20:28:45 +00:00
|
|
|
menu = { path = "../menu" }
|
2024-01-31 02:41:29 +00:00
|
|
|
parking_lot.workspace = true
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-31 02:41:29 +00:00
|
|
|
ui = { path = "../ui" }
|
|
|
|
util = { path = "../util" }
|
2024-01-31 03:01:35 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2022-04-14 23:21:22 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
ctor.workspace = true
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-31 02:41:29 +00:00
|
|
|
env_logger.workspace = true
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
serde_json.workspace = true
|