2023-03-30 07:31:33 +03:00
|
|
|
[package]
|
|
|
|
name = "copilot_button"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/copilot_button.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-03 05:56:45 +03:00
|
|
|
assets = { path = "../assets" }
|
2023-03-30 07:31:33 +03:00
|
|
|
copilot = { path = "../copilot" }
|
|
|
|
editor = { path = "../editor" }
|
|
|
|
context_menu = { path = "../context_menu" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
settings = { path = "../settings" }
|
|
|
|
theme = { path = "../theme" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
workspace = { path = "../workspace" }
|
2023-04-25 03:41:55 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
futures.workspace = true
|