
Closes #30513 - Abstract away common wrapper component to `platform_title_bar`. - Use it in both zed and rules library. - For rules library, keep traffic like only style for macOS, and add custom title bar for Linux and Windows. Release Notes: - Added way to minimize, maximize, and close the rules library window for Linux.
35 lines
747 B
TOML
35 lines
747 B
TOML
[package]
|
|
name = "rules_library"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/rules_library.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
editor.workspace = true
|
|
gpui.workspace = true
|
|
language.workspace = true
|
|
language_model.workspace = true
|
|
log.workspace = true
|
|
menu.workspace = true
|
|
picker.workspace = true
|
|
prompt_store.workspace = true
|
|
release_channel.workspace = true
|
|
rope.workspace = true
|
|
serde.workspace = true
|
|
settings.workspace = true
|
|
theme.workspace = true
|
|
title_bar.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace-hack.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|