2023-08-11 10:23:27 +00:00
|
|
|
[package]
|
|
|
|
name = "quick_action_bar"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2023-08-11 10:23:27 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/quick_action_bar.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 19:14:01 +00:00
|
|
|
assistant = { path = "../assistant" }
|
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 18:52:40 +00:00
|
|
|
search = { path = "../search" }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace" }
|
2024-01-03 20:33:51 +00:00
|
|
|
ui = { path = "../ui" }
|
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 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
2024-01-03 19:08:51 +00:00
|
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|