2023-03-30 04:31:33 +00:00
|
|
|
[package]
|
2024-01-05 15:36:26 +00:00
|
|
|
name = "copilot_ui"
|
2023-03-30 04:31:33 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
2024-01-05 15:36:26 +00:00
|
|
|
path = "src/copilot_ui.rs"
|
2023-03-30 04:31:33 +00:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-03 19:01:58 +00:00
|
|
|
copilot = { path = "../copilot" }
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor" }
|
2024-01-03 20:09:08 +00:00
|
|
|
fs = { path = "../fs" }
|
2024-01-03 19:48:46 +00:00
|
|
|
zed_actions = { path = "../zed_actions"}
|
2024-01-03 20:59:39 +00:00
|
|
|
gpui = { path = "../gpui" }
|
2024-01-03 19:58:02 +00:00
|
|
|
language = { path = "../language" }
|
2024-01-03 20:28:45 +00:00
|
|
|
settings = { path = "../settings" }
|
2024-01-03 20:41:01 +00:00
|
|
|
theme = { path = "../theme" }
|
2024-01-05 14:58:45 +00:00
|
|
|
ui = { path = "../ui" }
|
2023-03-30 04:31:33 +00:00
|
|
|
util = { path = "../util" }
|
2024-01-03 19:08:51 +00:00
|
|
|
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]
|
2024-01-03 18:58:57 +00:00
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|