Cargo.toml

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