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" }
14fs = { path = "../fs" }
15context_menu = { path = "../context_menu" }
16gpui = { path = "../gpui" }
17language = { path = "../language" }
18settings = { path = "../settings" }
19theme = { path = "../theme" }
20util = { path = "../util" }
21workspace = { path = "../workspace" }
22anyhow.workspace = true
23smol.workspace = true
24futures.workspace = true
25
26[dev-dependencies]
27editor = { path = "../editor", features = ["test-support"] }