mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 02:48:34 +00:00
588976d27a
Co-authored-by: Mikayla <mikayla@zed.dev>
22 lines
689 B
TOML
22 lines
689 B
TOML
[package]
|
|
name = "quick_action_bar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/quick_action_bar.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
assistant = { package = "assistant2", path = "../assistant2" }
|
|
editor = { path = "../editor" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
search = { path = "../search" }
|
|
workspace = { package = "workspace2", path = "../workspace2" }
|
|
ui = { package = "ui2", path = "../ui2" }
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
workspace = { package = "workspace2", path = "../workspace2", features = ["test-support"] }
|