Brian J. Tarricone
c3166f0b9c
If the user presses enter or escape in order to get the unlock dialog to show in the first place, forwarding that event to the dialog will only cause it to close immediately. Also took the opportunity to clean up the dependencies where I have my own patches. I'm now using the cargo 'patch' section so that the dependencies specified in the individual Cargo.toml files are clean.
20 lines
247 B
TOML
20 lines
247 B
TOML
[package]
|
|
name = "bscreensaver-util"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = "3"
|
|
env_logger = "0.9"
|
|
humantime = "2"
|
|
lazy_static = "1"
|
|
libc = "0.2"
|
|
shell-words = "1"
|
|
toml = "0.5"
|
|
xcb = "1"
|
|
xdg = "2"
|
|
zbus = "2"
|