2023-11-06 23:33:20 +03:00
|
|
|
[package]
|
|
|
|
name = "picker2"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/picker2.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
editor = { package = "editor2", path = "../editor2" }
|
2023-11-09 23:23:30 +03:00
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2023-11-06 23:33:20 +03:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
|
|
menu = { package = "menu2", path = "../menu2" }
|
|
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
theme = { package = "theme2", path = "../theme2" }
|
2023-12-13 23:35:49 +03:00
|
|
|
workspace = { package = "workspace2", path = "../workspace2"}
|
2023-11-06 23:33:20 +03:00
|
|
|
|
|
|
|
parking_lot.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { package = "editor2", path = "../editor2", features = ["test-support"] }
|
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
|
|
serde_json.workspace = true
|
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|