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]
12assets = { path = "../assets" }
13copilot = { path = "../copilot" }
14editor = { path = "../editor" }
15context_menu = { path = "../context_menu" }
16gpui = { path = "../gpui" }
17settings = { path = "../settings" }
18theme = { path = "../theme" }
19util = { path = "../util" }
20workspace = { path = "../workspace" }
21anyhow.workspace = true
22smol.workspace = true
23futures.workspace = true