keylightd/Cargo.toml

25 lines
627 B
TOML
Raw Permalink Normal View History

2023-04-20 21:04:10 +02:00
[package]
name = "keylightd"
version = "1.1.0"
2023-04-20 21:04:10 +02:00
edition = "2021"
license = "0BSD"
2023-04-20 21:17:24 +02:00
readme = "README.md"
2023-04-20 21:04:10 +02:00
description = "Keyboard backlight daemon for Framework laptops"
repository = "https://github.com/jonas-schievink/keylightd"
categories = ["hardware-support", "command-line-utilities"]
[dependencies]
evdev = "0.12.1"
nix = { version = "0.26.2", features = ["user"] }
anyhow = "1.0.70"
bytemuck = { version = "1.13.1", features = ["derive"] }
log = "0.4.17"
env_logger = { version = "0.10.0", default-features = false, features = [
"auto-color",
"humantime",
] }
argh = "0.1.10"
2023-05-31 01:32:38 +02:00
[profile.release]
strip = "debuginfo"