-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (34 loc) · 1022 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
[package]
authors = ["Carmine Margiotta <cmargiotta@posteo.net>"]
name = "mqtt-system-monitor"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
publish = false
[dependencies]
cargo-deb = "1.42.2"
gethostname = "0.4.1"
log = "0.4.17"
mlua = { version = "0.8.8", features = ["lua54", "vendored", "serialize"] }
rumqttc = "0.20.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
serde_yaml = "0.9"
stderrlog = "0.5.4"
tokio = { version = "1", features = ["full"] }
[package.metadata.deb]
copyright = "2023, Carmine Margiotta <cmargiotta@posteo.net>"
extended-description = "A modular daemon that periodically reads PC sensors values and publishes them on an MQTT broker."
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["default/*", "etc/msm", "644"],
]
conf-files = [
"etc/msm/config.yml",
"etc/msm/sensors/*"
]
maintainer-scripts = "systemd/"
systemd-units = { enable = false }