2023-03-30 04:31:33 +00:00
|
|
|
[package]
|
|
|
|
name = "copilot_button"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/copilot_button.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
copilot = { path = "../copilot" }
|
|
|
|
editor = { path = "../editor" }
|
2023-05-10 01:14:42 +00:00
|
|
|
fs = { path = "../fs" }
|
2023-03-30 04:31:33 +00:00
|
|
|
context_menu = { path = "../context_menu" }
|
|
|
|
gpui = { path = "../gpui" }
|
2023-05-11 21:40:35 +00:00
|
|
|
language = { path = "../language" }
|
2023-03-30 04:31:33 +00:00
|
|
|
settings = { path = "../settings" }
|
|
|
|
theme = { path = "../theme" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
workspace = { path = "../workspace" }
|
2023-04-25 00:41:55 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
futures.workspace = true
|
2023-05-20 15:54:38 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|