1[package]
2name = "copilot_button2"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/copilot_button.rs"
9doctest = false
10
11[dependencies]
12copilot = { package = "copilot2", path = "../copilot2" }
13editor = { package = "editor2", path = "../editor2" }
14fs = { package = "fs2", path = "../fs2" }
15zed-actions = { package="zed_actions2", path = "../zed_actions2"}
16gpui = { package = "gpui2", path = "../gpui2" }
17language = { package = "language2", path = "../language2" }
18settings = { package = "settings2", path = "../settings2" }
19theme = { package = "theme2", path = "../theme2" }
20util = { path = "../util" }
21workspace = { package = "workspace2", path = "../workspace2" }
22anyhow.workspace = true
23smol.workspace = true
24futures.workspace = true
25
26[dev-dependencies]
27editor = { package = "editor2", path = "../editor2", features = ["test-support"] }