Menu

[4e0269]: / Cargo.toml  Maximize  Restore  History

Download this file

26 lines (22 with data), 762 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
[package]
name = "diskmon"
version = "0.2.0"
edition = "2024"
[[bin]]
name = "diskmon-mail"
path = "src/main.rs"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
sysinfo = "0.30"
hostname = "0.3"
clap = { version = "4.0", features = ["derive"] }
colored = "2.0"
lettre = { version = "0.11", features = ["smtp-transport", "builder", "tokio1", "tokio1-native-tls"] }
native-tls = { version = "0.2", features = ["vendored"] }
openssl = { version = "0.10", features = ["vendored"] }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winioctl", "fileapi", "handleapi", "errhandlingapi", "sysinfoapi"] }
wmi = "0.13"