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.
19 lines
440 B
TOML
19 lines
440 B
TOML
[package]
|
|
name = "xcb-xembed"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Brian Tarricone <brian@tarricone.org>",
|
|
]
|
|
edition = "2021"
|
|
description = "XCB-based implementation of the X11 XEMBED protocol"
|
|
license = "LGPL-3.0"
|
|
repository = "https://github.com/kelnos/xcb-xembed"
|
|
readme = "README.md"
|
|
keywords = ["gui", "x11", "xcb", "xembed"]
|
|
categories = ["gui"]
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
log = "0.4"
|
|
xcb = { version = "1", features = ["xfixes"] }
|