-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 742 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 742 Bytes
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
[package]
name = "bato"
version = "0.3.1"
description = "A program to send battery level notifications"
authors = ["pierre <dommerc.pierre@gmail.com>"]
edition = "2024"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "1.1.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3.1", features = [
"tracing-log",
"env-filter",
] }
tracing-appender = "0.2"
signal-hook = "0.4"
once_cell = "1.21"
notify-rust = "4.11"
strum = { version = "0.28", features = ["derive"] }
udev = { version = "0.9.3", features = ["mio"]}
mio = { version = "1.2.0", features = ["os-poll"] }
[profile.release]
codegen-units = 1
strip = true
opt-level = "s"
lto = true