Files
rustlock/Cargo.toml
T
jory 61daf52906
Code Quality / quality-checks (push) Has been cancelled
Security Scan / security-audit (push) Has been cancelled
feat: add media controls and fixed icon resolution
- Implement Wayland pointer handling for interactive media buttons.
- Add pure-Rust SVG loading via resvg.
- Refactor status indicators for consistent icon and layout handling.
2026-04-10 17:32:52 +02:00

54 lines
2.1 KiB
TOML

[package]
name = "rustlock"
version = "0.1.0"
edition = "2021"
[dependencies]
smithay-client-toolkit = { version = "0.19", default-features = false, features = ["calloop", "xkbcommon"] }
wayland-client = { version = "0.31" }
wayland-protocols = { version = "0.32", features = ["client"] }
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
anyhow = "1.0"
futures = { version = "0.3", default-features = false, features = ["std"] }
cairo-rs = { version = "0.20", default-features = false, features = ["png"] }
gdk-pixbuf = { version = "0.20", default-features = false, features = ["v2_40"] }
gio = { version = "0.20" }
pangocairo = { version = "0.20" }
clap = { version = "4.4", default-features = false, features = ["derive", "std", "help", "usage", "error-context"] }
toml = { version = "1.0", default-features = false, features = ["parse", "display", "serde"] }
serde = { version = "1.0", default-features = false, features = ["derive", "std"] }
zeroize = "1.7"
log = "0.4"
env_logger = { version = "0.11", default-features = false, features = ["color", "humantime"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
whoami = "1.0"
zbus = { version = "3.15", default-features = false, features = ["tokio"] }
mpris = "2.0"
upower_dbus = "0.3"
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "macros", "time", "sync"] }
num-traits = { version = "0.2" }
rand = { version = "0.8" }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "rustls-tls"], optional = true }
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
fastblur = "0.1"
pam-client = "0.5"
thiserror = "1.0"
bytemuck = "1.14"
calloop = "0.13"
xkbcommon = "0.7"
calloop-wayland-source = "0.3"
resvg = { version = "0.42", default-features = false }
usvg = { version = "0.42", default-features = false }
tiny-skia = "0.11"
[features]
default = ["networking"]
networking = ["dep:reqwest", "tokio/net"]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true