mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 13:24:19 +00:00
f62ccf9c8a
This PR extracts an `auto_update_ui` crate out of the `auto_update` crate. This allows `auto_update` to not depend on heavier crates like `editor`, which in turn allows other downstream crates to start building sooner. Release Notes: - N/A
28 lines
557 B
TOML
28 lines
557 B
TOML
[package]
|
|
name = "auto_update_ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/auto_update_ui.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
auto_update.workspace = true
|
|
client.workspace = true
|
|
editor.workspace = true
|
|
gpui.workspace = true
|
|
http_client.workspace = true
|
|
markdown_preview.workspace = true
|
|
menu.workspace = true
|
|
release_channel.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|