mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-13 13:50:38 +00:00
02dfe08ce8
This PR adds "Open Settings" and "Open Docs" to the welcome page, as well as some minor design polish. The welcome page needs a full redesign at some point so I didn't too to much here in terms of structure/content. Before | After: ![CleanShot 2024-09-16 at 08 12 23@2x](https://github.com/user-attachments/assets/722175ec-d129-4060-827f-f02f572115da) --- Release Notes: - Improved welcome page design and added additional links.
39 lines
779 B
TOML
39 lines
779 B
TOML
[package]
|
|
name = "welcome"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/welcome.rs"
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
client.workspace = true
|
|
db.workspace = true
|
|
extensions_ui.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
inline_completion_button.workspace = true
|
|
install_cli.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
settings.workspace = true
|
|
theme_selector.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
vim.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { workspace = true, features = ["test-support"] }
|