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]
12editor = { path = "../editor" }
13gpui = { path = "../gpui" }
14search = { path = "../search" }
15theme = { path = "../theme" }
16workspace = { path = "../workspace" }
17
18[dev-dependencies]
19editor = { path = "../editor", features = ["test-support"] }
20gpui = { path = "../gpui", features = ["test-support"] }
21theme = { path = "../theme", features = ["test-support"] }
22workspace = { path = "../workspace", features = ["test-support"] }