This commit is contained in:
Breadway 2026-05-19 12:31:26 +08:00
parent b8a3424834
commit 4a3604f78a
10 changed files with 371 additions and 107 deletions

View file

@ -2,6 +2,12 @@
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]
gtk4 = { version = "0.11", features = ["v4_12"] }
@ -10,6 +16,11 @@ 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 = ["full"] }
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"