Cargo.toml

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