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