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]
13copilot = { path = "../copilot" }
14editor = { path = "../editor" }
15fs = { path = "../fs" }
16zed_actions = { path = "../zed_actions"}
17gpui = { path = "../gpui" }
18language = { path = "../language" }
19settings = { path = "../settings" }
20theme = { path = "../theme" }
21ui = { path = "../ui" }
22util = { path = "../util" }
23workspace = {path = "../workspace" }
24anyhow.workspace = true
25smol.workspace = true
26futures.workspace = true
27
28[dev-dependencies]
29editor = { path = "../editor", features = ["test-support"] }