bscreensaver/locker/Cargo.toml
Brian J. Tarricone 23fef4d9e3 Support stable rust
This removes use of Option.contains(), and provides a fallback pidfd
implementation for stable.
2022-05-14 00:17:50 -07:00

30 lines
832 B
TOML

[package]
name = "bscreensaver"
version = "0.1.0"
authors = [
"Brian Tarricone <brian@tarricone.org>",
]
edition = "2021"
description = "Secure, simple X11 screen locker"
license = "GPL-3.0"
repository = "https://github.com/kelnos/bscreensaver"
readme = "README.md"
keywords = ["gui", "screensaver", "screen-locker"]
categories = ["gui"]
[features]
default = ["use-nightly"]
use-nightly = []
[dependencies]
anyhow = "1"
clap = "3"
bscreensaver-command = { path = "../command" }
bscreensaver-util = { path = "../util" }
libc = "0.2"
log = "0.4"
nix = "0.23"
# git source needed until extension event error resolution fix is released
xcb = { git = "https://github.com/rust-x-bindings/rust-xcb", rev = "d09b5f91bc07d56673f1bc0d6c7ecd72b5ff7b3e", features = ["randr", "xfixes", "xinput"] }
xcb-xembed = { path = "../xcb-xembed" }