-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 802 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 802 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
36
37
38
[package]
name = "baru"
version = "0.5.2"
description = "A simple system monitor for WM statusbar"
authors = ["pierre <dommerc.pierre@gmail.com>"]
edition = "2024"
links = "netlink,audio"
build = "build.rs"
[dependencies]
anyhow = "1.0"
clap = { version = "4.6", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"tracing-log",
"env-filter",
] }
tracing-appender = "0.2"
once_cell = "1.21"
chrono = "0.4"
regex = "1"
reqwest = {
version = "0.13",
default-features = false,
features = ["http2", "charset", "native-tls", "blocking", "json"]
}
signal-hook = "0.4"
[build-dependencies]
cmake = "0.1"
[profile.release]
codegen-units = 1
strip = true
opt-level = "s"
lto = true