-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (51 loc) · 1.73 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "thermagate"
version = "0.1.0"
edition = "2021"
authors = ["Michael P. Jung <[email protected]>"]
description = "Gateway compatible with ROTEX based DAIKIN Altherma 3 heat pump"
keywords = ["daikin", "altherma", "gateway", "heat pump"]
license = "GPL-3.0"
repository = "https://github.com/bikeshedder/thermagate"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.8.1", features = ["ws", "tracing"] }
clap = { version = "4.3.4", features = ["derive"] }
console = "0.15.7"
figment = { version = "0.10.19", features = ["toml"] }
futures-util = "0.3.28"
itertools = "0.14.0"
mime_guess = "2.0.5"
nrg-hass = { git = "https://github.com/bikeshedder/nrg" }
nrg-mqtt = { git = "https://github.com/bikeshedder/nrg" }
num-traits = "0.2.17"
num_enum = "0.7.1"
phf = { version = "0.11.2", features = ["macros"] }
rumqttc = "0.24.0"
rust-embed = { version = "8.5.0", features = ["axum"] }
rust_decimal = "1.33.1"
rust_decimal_macros = "1.33.1"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
serde_with = "3.11.0"
socketcan = { version = "3.3.0", features = ["tokio"] }
socketioxide = "0.15.0"
strum = { version = "0.26.0", features = ["derive"] }
thiserror = "2.0"
time = { version = "0.3.36", features = ["parsing"] }
tokio = { version = "1.28.2", features = [
"macros",
"rt-multi-thread",
"io-util",
"sync",
] }
tokio-stream = { version = "0.1.16", features = ["sync"] }
toml = "0.8"
tower-http = { version = "0.6.0", features = ["fs", "cors"] }
tracing = { version = "0.1.37", features = ["async-await"] }
tracing-subscriber = "0.3.17"
[profile.release]
strip = true
[workspace]
members = ["codegen"]