2023-08-11 10:23:27 +00:00
|
|
|
[package]
|
|
|
|
name = "quick_action_bar"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/quick_action_bar.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 18:30:52 +00:00
|
|
|
assistant = { package = "assistant2", path = "../assistant2" }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 18:30:52 +00:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
2024-01-03 18:52:40 +00:00
|
|
|
search = { path = "../search" }
|
2024-01-03 18:30:52 +00:00
|
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
|
|
ui = { package = "ui2", path = "../ui2" }
|
2023-08-11 10:23:27 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|
2024-01-03 18:30:52 +00:00
|
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|