Initial commit

This commit is contained in:
Breadway 2026-07-03 13:37:31 +08:00
commit 9f97f2c989
37 changed files with 4871 additions and 0 deletions

25
breadgreet/Cargo.toml Normal file
View file

@ -0,0 +1,25 @@
[package]
name = "breadgreet"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["Breadway <rileyhorsham@gmail.com>"]
description = "Graphical greetd greeter for Hyprland / Wayland"
[[bin]]
name = "breadgreet"
path = "src/main.rs"
[dependencies]
breadlock-ui = { path = "../breadlock-ui" }
bread-theme = { workspace = true, features = ["gtk"] }
gtk4 = { version = "0.11", features = ["v4_12"] }
relm4 = { version = "0.11", features = ["macros"] }
greetd_ipc = { version = "0.10", default-features = false, features = ["tokio-codec"] }
chrono = "0.4"
tokio.workspace = true
serde.workspace = true
toml.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
thiserror.workspace = true