-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 1.01 KB
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
[package]
name = "reboot-arch-btw"
version = "1.0.0"
repository = "https://github.com/rnestler/reboot-arch-btw"
license = "GPL-3.0-only"
authors = [
"Raphael Nestler <raphael.nestler@gmail.com>",
"Stefan Schindler <stefan@estada.ch>",
"Danilo Bargen <mail@dbrgn.ch>",
]
description = "Check if you need to reboot due to an updated kernel. (I use Arch btw!)"
readme = "README.md"
keywords = ["i-use-arch-btw", "arch", "linux", "kernel"]
categories = ["command-line-utilities"]
include = [
"**/*.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
]
edition = "2024"
[dependencies]
alpm = "5.0.0"
clap = { version = "4.5.60", features = ["help", "usage", "error-context", "std", "derive"], default-features = false }
notify-rust = { version = "4.12", features = ["d"], default-features = false }
utmp-rs = "0.4.0"
time = "0.3.47"
log = "0.4.27"
env_logger = { version = "0.11.9", features = ["humantime"], default-features = false }
anyhow = "1.0.102"
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1