1[package]
2name = "quick_action_bar"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-only"
7
8
9[lib]
10path = "src/quick_action_bar.rs"
11doctest = false
12
13[dependencies]
14assistant = { path = "../assistant" }
15editor = { path = "../editor" }
16gpui = { path = "../gpui" }
17search = { path = "../search" }
18workspace = { path = "../workspace" }
19ui = { path = "../ui" }
20
21[dev-dependencies]
22editor = { path = "../editor", features = ["test-support"] }
23gpui = { path = "../gpui", features = ["test-support"] }
24workspace = { path = "../workspace", features = ["test-support"] }