mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 14:20:35 +00:00
- **copilot: Fix double lease panic when signing out** - **Extract copilot_chat into a separate crate** - **Do not use re-exports from copilot** - **Use new SignIn API** - **Extract copilot_ui out of copilot** Closes #7501 Release Notes: - Fixed Copilot providing suggestions from different Zed windows. - Copilot edit predictions now support jumping to unresolved diagnostics.
32 lines
548 B
TOML
32 lines
548 B
TOML
[package]
|
|
name = "copilot_ui"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/copilot_ui.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
default = []
|
|
test-support = [
|
|
"copilot/test-support",
|
|
"gpui/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
copilot.workspace = true
|
|
gpui.workspace = true
|
|
log.workspace = true
|
|
lsp.workspace = true
|
|
menu.workspace = true
|
|
serde_json.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|