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