-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
42 lines (38 loc) · 921 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
34
35
36
37
38
39
40
41
42
[package]
name = "script-utils"
version = "0.1.0"
authors = ["Arne Beer <[email protected]>"]
edition = "2021"
[lib]
name = "script_utils"
path = "src/lib.rs"
[profile.release]
lto = "thin"
[lints.clippy]
# This one is having too many false-positives and it makes the code harder to read.
assigning_clones = "allow"
[dependencies]
anyhow = "1"
better-panic = "0.3"
chrono = { version = "0.4", features = ["now"] }
clap = { version = "4", features = ["derive"] }
dirs = "6"
comfy-table = "7"
image = { version = "0.25", features = [
"png",
"jpeg",
"rayon",
], default-features = false }
log = "0.4"
procfs = { version = "0.17", default-features = false }
rayon = "1"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
shellexpand = "3"
simplelog = { version = "0.12" }
strum = { version = "0.26", features = ["derive"] }
subprocess = "0.2"
tera = "1"
users = "0.11"