zed/crates/copilot_ui/Cargo.toml

31 lines
711 B
TOML
Raw Normal View History

[package]
name = "copilot_ui"
version = "0.1.0"
edition = "2021"
publish = false
license = "AGPL-3.0-only"
license-file = "../../LICENSE-AGPL"
[lib]
path = "src/copilot_ui.rs"
doctest = false
[dependencies]
copilot = { path = "../copilot" }
editor = { path = "../editor" }
fs = { path = "../fs" }
zed_actions = { path = "../zed_actions"}
gpui = { path = "../gpui" }
language = { path = "../language" }
settings = { path = "../settings" }
theme = { path = "../theme" }
ui = { path = "../ui" }
util = { path = "../util" }
workspace = {path = "../workspace" }
anyhow.workspace = true
smol.workspace = true
futures.workspace = true
2023-05-20 15:54:38 +00:00
[dev-dependencies]
editor = { path = "../editor", features = ["test-support"] }