- Cargo.toml: depend on bread-theme (path dep for local dev, git dep for production) with gtk feature; remove local theme dependencies - src/theme.rs: replace local pywal/Catppuccin impl with bread_theme::gtk helpers; local bar-specific CSS is preserved - bakery.toml: describes breadbar for bakery install - release.yml: builds on hestia self-hosted runner, publishes binary to dl.breadway.dev and GitHub Releases on v* tags
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "breadbar"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Minimal status bar and notification daemon for Hyprland on Wayland"
|
|
license = "MIT"
|
|
authors = ["Breadway <rileyhorsham@gmail.com>"]
|
|
repository = "https://github.com/breadway/breadbar"
|
|
keywords = ["wayland", "hyprland", "bar", "status-bar", "gtk4"]
|
|
categories = ["gui"]
|
|
|
|
[dependencies]
|
|
# Path dep for local dev; replace with git dep on first tag:
|
|
# bread-theme = { git = "https://github.com/Breadway/bread-ecosystem", tag = "theme-v0.1.0", features = ["gtk"] }
|
|
bread-theme = { path = "../bread-ecosystem/bread-theme", features = ["gtk"] }
|
|
gtk4 = { version = "0.11", features = ["v4_12"] }
|
|
gtk4-layer-shell = "0.8"
|
|
relm4 = { version = "0.11", features = ["macros"] }
|
|
hyprland = { version = "0.4.0-beta.3", features = ["tokio"] }
|
|
futures-lite = "2"
|
|
zbus = { version = "5", default-features = false, features = ["tokio"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "process", "signal", "sync"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
strip = "symbols"
|