-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 778 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 778 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
31
32
33
34
35
[package]
name = "alertify"
version = "0.2.3"
edition = "2021"
authors = ["arelive <me@are.moe>"]
description = "Notification tool for battery, memory, storage, devices and power supply state monitoring on Linux"
license = "MIT"
repository = "https://github.com/arebaka/alertify"
[dependencies]
anyhow = "1.0"
dirs = "6.0.0"
env_logger = "0.11.8"
futures-util = "0.3.31"
humansize = "2.1.3"
log = "0.4.27"
notify-rust = "4.5"
regex = "1.11.1"
serde = { version = "1.0", features = ["derive"] }
sysinfo = "0.35"
tokio = { version = "1.37", features = ["full"] }
tokio-stream = "0.1"
tokio-udev = "0.9"
toml = "0.5"
zbus = { version = "5.7", features = ["tokio"] }
zbus_names = "4.2"
[build-dependencies]
[features]
default = []
[[bin]]
name = "alertify"
path = "src/main.rs"