Cargo.toml

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