-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (36 loc) · 1.06 KB
/
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
[package]
name = "desktop2mqtt"
description = "A daemon to integrate any pc into your home automation system."
version = "0.3.0"
authors = ["Max Jöhnk <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "MIT"
repository = "https://github.com/maxjoehnk/desktop2mqtt"
[dependencies]
log = "0.4"
env_logger = "0.9.0"
tokio = { version = "1", features = ["fs", "rt-multi-thread", "sync", "signal", "time", "process"] }
mqtt-async-client = "0.3.1"
user-idle = "0.5.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
anyhow = "1"
futures-util = "0.3"
structopt = "0.3"
directories-next = "2"
notify-rust = "4"
systemstat = "0.2"
humantime-serde = "1"
[package.metadata.deb]
section = "utility"
priority = "optional"
assets = [
["target/release/desktop2mqtt", "usr/bin/", "755"],
["README.md", "usr/share/doc/desktop2mqtt/README", "644"],
]
depends = "$auto"
extended-description = """\
A daemon to integrate any pc into your home automation system.\
Primarily intended for [Home Assistant](https://home-assistant.io)."""