forked from cooperlees/monitord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 1.38 KB
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
43
44
45
46
47
48
[package]
name = "monitord"
version = "0.17.0"
authors = ["Cooper Ry Lees <[email protected]>"]
license = "GPL-2.0-or-later"
readme = "README.md"
documentation = "http://monitord.xyz/"
repository = "https://github.com/cooperlees/monitord"
edition = "2021"
description = """
monitord ... know how happy your systemd is! 😊
"""
categories = ["network-programming", "os::linux-apis"]
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "std", "help"], default-features = false }
configparser = { version = "3.1.0", features = ["indexmap"] }
indexmap = "2.9"
int-enum = "1.1"
itertools = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
serde_tuple = "1.0.0"
struct-field-names-as-array = "0.3"
strum = "0.27"
strum_macros = "0.27"
thiserror = "2.0"
tokio = { version = "1.47.1", features = ["fs", "rt", "rt-multi-thread", "macros", "tracing", "time", "sync"] }
tracing = "0.1"
tracing-core = "0.1"
tracing-glog = "0.4"
tracing-subscriber = "0.3"
uzers = "0.12"
zbus = { version = "5.11.0", features = ["tokio"], default-features = false }
zvariant = "5.7.0"
zvariant_derive = "5.7.0"
[target.'cfg(target_os = "linux")'.dependencies]
procfs = "0.15.1"
[dev-dependencies]
tempfile = "3.3.0"
tokio = { version = "1.47.1", features = ["test-util"] }
[profile]
release = { strip = "symbols", lto = "fat", opt-level = "z", codegen-units = 1 }