mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
Closes AI-244 This PR changes the approach for announcing skills support. It uses the announcement toast, the same thing used for parallel agents, which observes a specific version number to be displayed. I ended up simplifying things a bit by thinking we could rely on documentation for more detailed information (with more extensive paths and whatnot). Release Notes: - N/A --------- Co-authored-by: Richard Feldman <richard@zed.dev> Co-authored-by: MartinYe1234 <52641447+MartinYe1234@users.noreply.github.com> Co-authored-by: Martin Ye <martinye022@gmail.com>
34 lines
734 B
TOML
34 lines
734 B
TOML
[package]
|
|
name = "auto_update_ui"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/auto_update_ui.rs"
|
|
|
|
[dependencies]
|
|
agent_skills.workspace = true
|
|
anyhow.workspace = true
|
|
auto_update.workspace = true
|
|
client.workspace = true
|
|
db.workspace = true
|
|
editor.workspace = true
|
|
gpui.workspace = true
|
|
markdown_preview.workspace = true
|
|
notifications.workspace = true
|
|
prompt_store.workspace = true
|
|
release_channel.workspace = true
|
|
semver.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
telemetry.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|