-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 732 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 732 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
[package]
name = "vcontrold-mqttd"
version = "1.0.0"
edition = "2021"
description = "MQTT bridge for vcontrold (Viessmann heating controller)"
license = "MIT"
[dependencies]
tokio = { version = "1", features = ["full", "process", "signal"] }
rumqttc = { package = "rumqttc-next", version = "0.33", default-features = false, features = ["use-rustls-aws-lc"] }
rustls = "0.23"
rustls-pemfile = "2"
webpki-roots = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
hostname = "0.4"
[dev-dependencies]
tokio = { version = "1", features = ["test-util"] }
[profile.release]
lto = true
strip = true
codegen-units = 1