26 lines
667 B
TOML
26 lines
667 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"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = "3"
|
|
bscreensaver-command = { path = "../command" }
|
|
bscreensaver-util = { path = "../util" }
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
nix = "0.23"
|
|
xcb = { version = "1", features = ["randr", "xkb", "xfixes", "xinput"] }
|
|
xcb-xembed = { path = "../xcb-xembed" }
|
|
xkb = { version = "0.2", features = ["x11"] }
|