-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (47 loc) · 1.22 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
authors = ["Arvid Norlander"]
categories = ["command-line-utilities", "hardware-support"]
description = "Keyboard backlight timeout daemon for laptops"
edition = "2021"
exclude = ["/pkgs"]
keywords = ["keyboard", "backlight", "laptop", "thinkpad"]
license = "GPL-3.0-only"
name = "keyboard-backlightd"
repository = "https://github.com/VorpalBlade/keyboard-backlightd"
rust-version = "1.74.0"
version = "0.1.11"
[profile.release]
lto = true
opt-level = "z"
panic = "abort"
[profile.profiling]
debug = true
inherits = "release"
[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"i686-unknown-linux-gnu",
"i686-unknown-linux-musl",
]
[dependencies]
anyhow = { version = "1.0.93", features = ["backtrace"] }
clap = { version = "4.5.21", features = [
"derive",
"error-context",
"help",
"std",
], default-features = false }
env_logger = { version = "0.11.5", default-features = false }
evdev-rs = "0.6.1"
log = "0.4.22"
nix = { version = "0.29.0", default-features = false, features = [
"event",
"inotify",
] }
smallvec = { version = "1.13.2", features = [
"const_generics",
"const_new",
"union",
] }