-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (27 loc) · 890 Bytes
/
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
[package]
name = "battery-notifier"
description = "A customizable battery notifier for Linux kernels focused in BAT0 and BAT1"
version = "1.0.0"
edition = "2021"
repository = "https://github.com/luisnquin/battery-notifier"
readme = "README.md"
license-file = ".github/LICENSE"
authors = ["Luis Quiñones <[email protected]>"]
[[bin]]
name = "battery-notifier"
test = false
bench = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.195", features = ["derive"] }
chrono = "0.4.31"
clap = { version = "4.4.18", features = ["derive"] }
linuxver = "0.1.0"
os_info = { version = "3.7.0", default-features = false }
serde_yaml = "0.9.30"
soloud = { git = "https://github.com/MoAlyousef/soloud-rs" }
toml = "0.8.8"
notify-rust = "4.10.0"
anstyle = "1.0.4"
log = "0.4.20"
env_logger = "0.11.1"