Cargo.toml

 1[package]
 2name = "copilot_button"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6
 7[lib]
 8path = "src/copilot_button.rs"
 9doctest = false
10
11[dependencies]
12copilot = { path = "../copilot" }
13editor = { path = "../editor" }
14context_menu = { path = "../context_menu" }
15gpui = { path = "../gpui" }
16settings = { path = "../settings" }
17theme = { path = "../theme" }
18util = { path = "../util" }
19workspace = { path = "../workspace" }
20anyhow.workspace = true
21smol.workspace = true
22futures.workspace = true