2023-09-22 05:45:40 +00:00
|
|
|
[package]
|
|
|
|
name = "midea"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-18 12:03:58 +00:00
|
|
|
anyhow = { version = "1.0.86", features = ["backtrace"] }
|
2024-06-20 15:03:26 +00:00
|
|
|
if-addrs = "0.13.0"
|
2025-01-27 15:03:19 +00:00
|
|
|
rand = "0.9.0"
|
2024-04-15 12:05:34 +00:00
|
|
|
chrono = "0.4.38"
|
2023-09-23 09:41:49 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-07-01 18:02:45 +00:00
|
|
|
serde_json = "1.0.120"
|
2024-06-17 18:04:21 +00:00
|
|
|
reqwest = "0.12.5"
|
2024-06-17 21:06:20 +00:00
|
|
|
tokio = { version = "1.38.0", features=["macros", "rt-multi-thread"] }
|
2024-01-12 01:06:13 +00:00
|
|
|
futures = "0.3.30"
|
2024-04-27 21:02:58 +00:00
|
|
|
serial_test = "3.1.1"
|
2024-05-04 00:03:20 +00:00
|
|
|
num-traits = "0.2.19"
|
2024-02-07 02:03:07 +00:00
|
|
|
num-derive = "0.4.2"
|
2023-09-24 11:16:57 +00:00
|
|
|
|
|
|
|
#crypto
|
2023-09-25 09:30:54 +00:00
|
|
|
cbc = { version = "0.1.2", features = ["alloc"] }
|
2023-09-24 11:16:57 +00:00
|
|
|
md5 = "0.7.0"
|
2024-05-01 00:03:34 +00:00
|
|
|
base64 = "0.22.1"
|
2023-09-24 11:16:57 +00:00
|
|
|
hmac = "0.12.1"
|
2023-10-07 00:02:59 +00:00
|
|
|
sha2 = "0.10.8"
|
2024-02-14 02:02:30 +00:00
|
|
|
aes = "0.8.4"
|