1[package]
2name = "copilot_ui"
3version = "0.1.0"
4edition = "2021"
5publish = false
6license = "GPL-3.0-or-later"
7
8
9[lib]
10path = "src/copilot_ui.rs"
11doctest = false
12
13[dependencies]
14copilot = { path = "../copilot" }
15editor = { path = "../editor" }
16fs = { path = "../fs" }
17zed_actions = { path = "../zed_actions"}
18gpui = { path = "../gpui" }
19language = { path = "../language" }
20settings = { path = "../settings" }
21theme = { path = "../theme" }
22ui = { path = "../ui" }
23util = { path = "../util" }
24workspace = {path = "../workspace" }
25anyhow.workspace = true
26smol.workspace = true
27futures.workspace = true
28
29[dev-dependencies]
30editor = { path = "../editor", features = ["test-support"] }