2023-09-19 08:52:12 +00:00
|
|
|
[package]
|
|
|
|
name = "home_server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-22 02:03:09 +00:00
|
|
|
rusqlite = "0.31.0"
|
2024-05-18 12:03:20 +00:00
|
|
|
anyhow = { version = "1.0.86", features = ["backtrace"] }
|
2024-03-19 21:02:18 +00:00
|
|
|
reqwest = "0.11.27"
|
2023-09-21 05:30:39 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-09-19 08:52:12 +00:00
|
|
|
serde_json = "1.0"
|
2024-01-12 01:04:51 +00:00
|
|
|
futures = "0.3.30"
|
2024-05-30 21:20:48 +00:00
|
|
|
tokio = { version = "1.38.0", features=["macros", "rt-multi-thread"] }
|
2023-10-16 11:46:25 +00:00
|
|
|
tibber = "0.5.0"
|
2024-04-15 12:04:56 +00:00
|
|
|
chrono = "0.4.38"
|
2024-06-20 03:02:21 +00:00
|
|
|
actix-web = "4.8.0"
|
2023-10-16 11:46:25 +00:00
|
|
|
midea = { git = "https://gavania.de/hodasemi/Midea.git" }
|
2024-01-14 01:03:30 +00:00
|
|
|
actix-cors = "0.7.0"
|
2023-10-19 14:26:09 +00:00
|
|
|
dns-lookup = "2.0.4"
|