forked from wez/govee2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (48 loc) · 1.37 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
[package]
name = "govee"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = {version="1.22", features=["macros", "rt-multi-thread", "rt", "net", "sync", "time"]}
serde_json = "1.0.89"
serde = {version="1.0.147", features=["derive"]}
anyhow = "1"
log = "0.4"
env_logger = "0.11"
dotenvy = "0.15.7"
color-backtrace = "0.6.1"
chrono = { version = "0.4.31", features = ["serde"] }
chrono-tz = "0.10"
iana-time-zone = "0.1.58"
clap = { version = "4.4.12", features = ["derive"] }
reqwest = { version = "0.12", features = ["json"] }
sqlite-cache = "0.1.3"
dirs-next = "2.0.0"
rusqlite = {version="0.27.0", features=["bundled"]}
if-addrs = "0.13.1"
once_cell = "1.19.0"
csscolorparser = "0.7.0"
data-encoding = "2.5.0"
clap-num = "1.1.1"
uuid = { version = "1.9.0", features = ["v4", "v5"] }
uncased = "0.9.9"
openssl = "0.10.63"
p12 = "0.6.3"
axum = "0.7.3"
tower-http = { version = "0.6.2", features = ["fs"] }
async-channel = "2.1.1"
serde_json_path_to_error = "0.1.4"
strum_macros = "0.26"
strum = { version = "0.26.0", features = ["strum_macros"] }
thiserror = "2.0.9"
arc-swap = "1.6.0"
async-trait = "0.1.77"
parking_lot = "0.12.1"
[dependencies.mosquitto-rs]
version="0.11.1"
features = ["vendored-openssl"]
#path = "../mosquitto-rs/mosquitto-rs"
[dev-dependencies]
anyhow = "1"
k9 = "0.12.0"